Skip to content

Commit 740b26f

Browse files
authored
Merge pull request #304 from isuruf/release
Release 0.5.1
2 parents c5e17cf + 7a9c20f commit 740b26f

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ Moritz E. Beber <[email protected]>
2525
2626
Richard Otis <[email protected]>
2727
Erik Jansson Agnvall <[email protected]>
28+
Simon Stelter <[email protected]>

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,14 +223,16 @@ def finalize_options(self):
223223
'''
224224

225225
setup(name="symengine",
226-
version="0.5.0",
226+
version="0.5.1",
227227
description="Python library providing wrappers to SymEngine",
228228
setup_requires=['cython>=0.19.1'],
229229
long_description=long_description,
230230
author="SymEngine development team",
231231
author_email="[email protected]",
232232
license="MIT",
233233
url="https://github.com/symengine/symengine.py",
234+
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4',
235+
zip_safe=False,
234236
cmdclass = cmdclass,
235237
classifiers=[
236238
'License :: OSI Approved :: MIT License',
@@ -243,5 +245,6 @@ def finalize_options(self):
243245
'Programming Language :: Python :: 3.5',
244246
'Programming Language :: Python :: 3.6',
245247
'Programming Language :: Python :: 3.7',
248+
'Programming Language :: Python :: 3.8',
246249
]
247250
)

symengine/__init__.py

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

3636

37-
__version__ = "0.4.0"
37+
__version__ = "0.5.1"
3838

3939

4040
def test():

0 commit comments

Comments
 (0)