Skip to content

Commit

Permalink
Merge pull request #304 from isuruf/release
Browse files Browse the repository at this point in the history
Release 0.5.1
  • Loading branch information
isuruf authored Nov 3, 2019
2 parents c5e17cf + 7a9c20f commit 740b26f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ Moritz E. Beber <morbeb@biosustain.dtu.dk>
Alan Hu <alanlh2@illinois.edu>
Richard Otis <richard.otis@outlook.com>
Erik Jansson Agnvall <erikjansson90@gmail.com>
Simon Stelter <stelter@uni-bremen.de>
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,14 +223,16 @@ def finalize_options(self):
'''

setup(name="symengine",
version="0.5.0",
version="0.5.1",
description="Python library providing wrappers to SymEngine",
setup_requires=['cython>=0.19.1'],
long_description=long_description,
author="SymEngine development team",
author_email="symengine@googlegroups.com",
license="MIT",
url="https://github.com/symengine/symengine.py",
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,<4',
zip_safe=False,
cmdclass = cmdclass,
classifiers=[
'License :: OSI Approved :: MIT License',
Expand All @@ -243,5 +245,6 @@ def finalize_options(self):
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)
2 changes: 1 addition & 1 deletion symengine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def lambdify(args, exprs, **kwargs):
return Lambdify(args, *exprs, **kwargs)


__version__ = "0.4.0"
__version__ = "0.5.1"


def test():
Expand Down

0 comments on commit 740b26f

Please sign in to comment.