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>
3434Garming Sam <garming@catalyst.net.nz>
3535Pieter Eendebak <pieter.eendebak@gmail.com>
3636Ayush Kumar <ayushk7102@gmail.com>
37+ Christian Clauss <cclauss@me.com>
Original file line number Diff line number Diff line change 2222 print ("Value {} for USE_DISTUTILS treated as False" .
2323 format (use_distutils ))
2424
25- from distutils .command .build import build as _build
26-
2725if use_setuptools :
2826 try :
2927 from setuptools import setup
3028 from setuptools .command .install import install as _install
3129 from setuptools .command .build_ext import build_ext as _build_ext
3230 except ImportError :
3331 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
3437
3538if not use_setuptools :
3639 from distutils .core import setup
3740 from distutils .command .install import install as _install
3841 from distutils .command .build_ext import build_ext as _build_ext
42+ from distutils .command .build import build as _build
3943
4044cmake_opts = [("PYTHON_BIN" , sys .executable ),
4145 ("CMAKE_INSTALL_RPATH_USE_LINK_PATH" , "yes" )]
@@ -218,7 +222,7 @@ def finalize_options(self):
218222'''
219223
220224setup (name = "symengine" ,
221- version = "0.9.2 " ,
225+ version = "0.10.0 " ,
222226 description = "Python library providing wrappers to SymEngine" ,
223227 setup_requires = ['cython>=0.29.24' ],
224228 long_description = long_description ,
Original file line number Diff line number Diff line change @@ -61,7 +61,8 @@ def __getattr__(name):
6161 raise AttributeError ("Cannot import numpy, which is required for `lambdify` to work" )
6262 raise AttributeError (f"module 'symengine' has no attribute '{ name } '" )
6363
64- __version__ = "0.9.2"
64+
65+ __version__ = "0.10.0"
6566
6667
6768# 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