Skip to content

Commit 7013664

Browse files
committed
Require python>=3.8 and bump version to 0.11
1 parent 748c6ca commit 7013664

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import platform
66

77
# Make sure the system has the right Python version.
8-
if sys.version_info[:2] < (3, 7):
9-
print("SymEngine requires Python 3.7 or newer. "
8+
if sys.version_info[:2] < (3, 8):
9+
print("SymEngine requires Python 3.8 or newer. "
1010
"Python %d.%d detected" % sys.version_info[:2])
1111
sys.exit(-1)
1212

@@ -222,15 +222,15 @@ def finalize_options(self):
222222
'''
223223

224224
setup(name="symengine",
225-
version="0.10.0",
225+
version="0.11.0",
226226
description="Python library providing wrappers to SymEngine",
227227
setup_requires=['cython>=0.29.24'],
228228
long_description=long_description,
229229
author="SymEngine development team",
230230
author_email="[email protected]",
231231
license="MIT",
232232
url="https://github.com/symengine/symengine.py",
233-
python_requires='>=3.7,<4',
233+
python_requires='>=3.8,<4',
234234
zip_safe=False,
235235
packages=['symengine', 'symengine.lib', 'symengine.tests'],
236236
cmdclass = cmdclass,
@@ -241,9 +241,10 @@ def finalize_options(self):
241241
'Topic :: Scientific/Engineering',
242242
'Topic :: Scientific/Engineering :: Mathematics',
243243
'Topic :: Scientific/Engineering :: Physics',
244-
'Programming Language :: Python :: 3.7',
245244
'Programming Language :: Python :: 3.8',
246245
'Programming Language :: Python :: 3.9',
247246
'Programming Language :: Python :: 3.10',
247+
'Programming Language :: Python :: 3.11',
248+
'Programming Language :: Python :: 3.12',
248249
]
249250
)

symengine/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import sys
33

4-
if sys.version_info >= (3, 8, 0) and sys.platform == 'win32' \
4+
if sys.platform == 'win32' \
55
and 'SYMENGINE_PY_ADD_PATH_TO_SEARCH_DIRS' in os.environ:
66
for directory in os.environ['PATH'].split(';'):
77
if os.path.isdir(directory):
@@ -63,7 +63,7 @@ def __getattr__(name):
6363
raise AttributeError(f"module 'symengine' has no attribute '{name}'")
6464

6565

66-
__version__ = "0.10.0"
66+
__version__ = "0.11.0"
6767

6868

6969
# To not expose internals

symengine_version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.10.1
1+
v0.11.1

0 commit comments

Comments
 (0)