Skip to content

Commit dc2daf8

Browse files
authored
Merge pull request #436 from isuruf/release
Release 0.10.0
2 parents a1419bd + 894e7a2 commit dc2daf8

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ Michał Górny <[email protected]>
3434
Garming Sam <[email protected]>
3535
Pieter Eendebak <[email protected]>
3636
Ayush Kumar <[email protected]>
37+
Christian Clauss <[email protected]>

setup.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,24 @@
2222
print("Value {} for USE_DISTUTILS treated as False".
2323
format(use_distutils))
2424

25-
from distutils.command.build import build as _build
26-
2725
if 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

3538
if 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

4044
cmake_opts = [("PYTHON_BIN", sys.executable),
4145
("CMAKE_INSTALL_RPATH_USE_LINK_PATH", "yes")]
@@ -218,7 +222,7 @@ def finalize_options(self):
218222
'''
219223

220224
setup(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,

symengine/__init__.py

+2-1
Original file line numberDiff line numberDiff 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

symengine_version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
fcef5c7d6cc848e3f6c0b9ecc5a22d30e5e98f99
1+
v0.10.0

0 commit comments

Comments
 (0)