Skip to content

Commit b5c329c

Browse files
committed
Update version and METADATA
1 parent 135e9d7 commit b5c329c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ environment:
3131
PYTHON_VERSION: 37-x64
3232
- BUILD_TYPE: "Debug"
3333
COMPILER: MinGW-w64
34-
PYTHON_VERSION: 36-x64
34+
PYTHON_VERSION: 310-x64
3535
WITH_SYMPY: no
3636
- BUILD_TYPE: "Release"
3737
COMPILER: MSVC15
@@ -43,7 +43,7 @@ environment:
4343
- BUILD_TYPE: "Release"
4444
COMPILER: MSVC15
4545
PLATFORM: "x64"
46-
PYTHON_VERSION: 36-x64
46+
PYTHON_VERSION: 310-x64
4747
CONDA_INSTALL_LOCN: C:\\Miniconda36-x64
4848
WITH_MPFR: yes
4949
WITH_MPC: yes

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
from distutils.command.build import build as _build
88

99
# Make sure the system has the right Python version.
10-
if sys.version_info[:2] < (3, 6):
11-
print("SymEngine requires Python 3.6 or newer. "
10+
if sys.version_info[:2] < (3, 7):
11+
print("SymEngine requires Python 3.7 or newer. "
1212
"Python %d.%d detected" % sys.version_info[:2])
1313
sys.exit(-1)
1414

@@ -214,15 +214,15 @@ def finalize_options(self):
214214
'''
215215

216216
setup(name="symengine",
217-
version="0.8.1",
217+
version="0.9.0",
218218
description="Python library providing wrappers to SymEngine",
219219
setup_requires=['cython>=0.29.24'],
220220
long_description=long_description,
221221
author="SymEngine development team",
222222
author_email="[email protected]",
223223
license="MIT",
224224
url="https://github.com/symengine/symengine.py",
225-
python_requires='>=3.6,<4',
225+
python_requires='>=3.7,<4',
226226
zip_safe=False,
227227
cmdclass = cmdclass,
228228
classifiers=[
@@ -232,9 +232,9 @@ def finalize_options(self):
232232
'Topic :: Scientific/Engineering',
233233
'Topic :: Scientific/Engineering :: Mathematics',
234234
'Topic :: Scientific/Engineering :: Physics',
235-
'Programming Language :: Python :: 3.6',
236235
'Programming Language :: Python :: 3.7',
237236
'Programming Language :: Python :: 3.8',
238237
'Programming Language :: Python :: 3.9',
238+
'Programming Language :: Python :: 3.10',
239239
]
240240
)

symengine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def lambdify(args, exprs, **kwargs):
5656
return Lambdify(args, *exprs, **kwargs)
5757

5858

59-
__version__ = "0.8.1"
59+
__version__ = "0.9.0"
6060

6161

6262
# To not expose internals

0 commit comments

Comments
 (0)