File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,11 @@ In this release, test coverage is 79%.
33
33
34
34
🛠️ Bug fixes:
35
35
36
+ * [ Issue #19 ] ( https://github.com./PlotPyStack/PlotPy/issues/19 ) - Fix ` distutils `
37
+ deprecation in setup.py: replaced ` distutils.core ` by ` setuptools ` in the setup.py
38
+ script to avoid the deprecation warning when building the package with Python 3.10
39
+ and 3.11, and to ensure compatibility with earlier Python versions (PlotPy is already
40
+ compatible with the most recent Python versions: this only concerns the build system)
36
41
* Fix cyclic import in ` plotpy.tools ` module:
37
42
* Some tools in ` plotpy.tools ` subpackage were importing the ` plotpy.plot ` module,
38
43
which was importing the ` plotpy.tools ` module, causing a cyclic import issue
Original file line number Diff line number Diff line change 4
4
import os .path as osp
5
5
import platform
6
6
import sys
7
- from distutils .core import setup
8
7
9
8
import numpy
10
9
from Cython import __version__ as __cython_version__
11
10
from Cython .Compiler import Main
12
- from setuptools import Distribution , Extension
11
+ from setuptools import Distribution , Extension , setup
13
12
14
13
LIBNAME = "plotpy"
15
14
SRCPATH = osp .join ("." , "src" )
You can’t perform that action at this time.
0 commit comments