4
4
import sys
5
5
6
6
# Make sure the system has the right Python version.
7
- if sys .version_info [:2 ] < (2 , 6 ):
8
- print ("SymEngine requires Python 2.6 or newer. Python %d.%d detected" % sys .version_info [:2 ])
7
+ if sys .version_info [:2 ] < (2 , 7 ):
8
+ print ("SymEngine requires Python 2.7 or newer. Python %d.%d detected" % sys .version_info [:2 ])
9
9
sys .exit (- 1 )
10
10
11
11
# use setuptools by default as per the official advice at:
@@ -177,7 +177,7 @@ def run(self):
177
177
integration with SymPy and Sage.'''
178
178
179
179
setup (name = "symengine" ,
180
- version = "0.1.0.dev " ,
180
+ version = "0.2.0 " ,
181
181
description = "Python library providing wrappers to SymEngine" ,
182
182
setup_requires = ['cython>=0.19.1' ],
183
183
long_description = long_description ,
@@ -196,7 +196,6 @@ def run(self):
196
196
'Topic :: Scientific/Engineering' ,
197
197
'Topic :: Scientific/Engineering :: Mathematics' ,
198
198
'Topic :: Scientific/Engineering :: Physics' ,
199
- 'Programming Language :: Python :: 2.6' ,
200
199
'Programming Language :: Python :: 2.7' ,
201
200
'Programming Language :: Python :: 3.3' ,
202
201
'Programming Language :: Python :: 3.4' ,
0 commit comments