File tree Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Expand file tree Collapse file tree 4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -34,3 +34,4 @@ Michał Górny <mgorny@gentoo.org>
34
34
Garming Sam <garming@catalyst.net.nz>
35
35
Pieter Eendebak <pieter.eendebak@gmail.com>
36
36
Ayush Kumar <ayushk7102@gmail.com>
37
+ Christian Clauss <cclauss@me.com>
Original file line number Diff line number Diff line change 22
22
print ("Value {} for USE_DISTUTILS treated as False" .
23
23
format (use_distutils ))
24
24
25
- from distutils .command .build import build as _build
26
-
27
25
if use_setuptools :
28
26
try :
29
27
from setuptools import setup
30
28
from setuptools .command .install import install as _install
31
29
from setuptools .command .build_ext import build_ext as _build_ext
32
30
except ImportError :
33
31
use_setuptools = False
32
+ else :
33
+ try :
34
+ from setuptools .command .build import build as _build
35
+ except ImportError :
36
+ from distutils .command .build import build as _build
34
37
35
38
if not use_setuptools :
36
39
from distutils .core import setup
37
40
from distutils .command .install import install as _install
38
41
from distutils .command .build_ext import build_ext as _build_ext
42
+ from distutils .command .build import build as _build
39
43
40
44
cmake_opts = [("PYTHON_BIN" , sys .executable ),
41
45
("CMAKE_INSTALL_RPATH_USE_LINK_PATH" , "yes" )]
@@ -218,7 +222,7 @@ def finalize_options(self):
218
222
'''
219
223
220
224
setup (name = "symengine" ,
221
- version = "0.9.2 " ,
225
+ version = "0.10.0 " ,
222
226
description = "Python library providing wrappers to SymEngine" ,
223
227
setup_requires = ['cython>=0.29.24' ],
224
228
long_description = long_description ,
Original file line number Diff line number Diff line change @@ -61,7 +61,8 @@ def __getattr__(name):
61
61
raise AttributeError ("Cannot import numpy, which is required for `lambdify` to work" )
62
62
raise AttributeError (f"module 'symengine' has no attribute '{ name } '" )
63
63
64
- __version__ = "0.9.2"
64
+
65
+ __version__ = "0.10.0"
65
66
66
67
67
68
# To not expose internals
Original file line number Diff line number Diff line change 1
- fcef5c7d6cc848e3f6c0b9ecc5a22d30e5e98f99
1
+ v0.10.0
You can’t perform that action at this time.
0 commit comments