Skip to content

Commit 1335554

Browse files
authored
Merge pull request #387 from isuruf/update
Update version, metadata and CI
2 parents fa5d938 + d0aa124 commit 1335554

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ jobs:
5555
OS: ubuntu-20.04
5656
CC: gcc
5757

58-
- BUILD_TYPE: Debug
59-
PYTHON_VERSION: 3.9
60-
WITH_BFD: yes
61-
WITH_PIRANHA: yes
62-
OS: ubuntu-20.04
63-
CC: gcc
58+
#- BUILD_TYPE: Debug
59+
# PYTHON_VERSION: 3.9
60+
# WITH_BFD: yes
61+
# WITH_PIRANHA: yes
62+
# OS: ubuntu-20.04
63+
# CC: gcc
6464

6565
- BUILD_TYPE: Debug
6666
PYTHON_VERSION: 3.8

appveyor.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ environment:
1212
- BUILD_TYPE: "Release"
1313
COMPILER: MSVC15
1414
PLATFORM: "x64"
15-
PYTHON_VERSION: 39-x64
15+
PYTHON_VERSION: 310-x64
1616
CONDA_INSTALL_LOCN: C:\\Miniconda36-x64
1717
WITH_MPFR: yes
1818
WITH_MPC: yes
@@ -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: 37-x64
3535
WITH_SYMPY: no
3636
- BUILD_TYPE: "Release"
3737
COMPILER: MSVC15
@@ -43,8 +43,9 @@ 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
48+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
4849
WITH_MPFR: yes
4950
WITH_MPC: yes
5051
WITH_LLVM: 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
@@ -57,7 +57,7 @@ def lambdify(args, exprs, **kwargs):
5757
return Lambdify(args, *exprs, **kwargs)
5858

5959

60-
__version__ = "0.8.1"
60+
__version__ = "0.9.0"
6161

6262

6363
# To not expose internals

0 commit comments

Comments
 (0)