File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 38
38
- PYTHON_VERSION="2.7" BUILD_SHARED_LIBS="yes"
39
39
40
40
# These test the setup.py file
41
- - PYTHON_VERSION="2.6" WITH_MPFR="yes" INTEGER_CLASS="gmp"
42
- - PYTHON_VERSION="2.7" WITH_MPC="yes"
41
+ - PYTHON_VERSION="2.7" WITH_MPFR="yes" INTEGER_CLASS="gmp"
43
42
- PYTHON_VERSION="3.3" WITH_MPC="yes"
44
43
- PYTHON_VERSION="3.4" WITH_MPFR="yes" WITH_NUMPY="yes"
45
44
- PYTHON_VERSION="3.5" WITH_MPFR="yes" WITH_NUMPY="yes"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ a fast C++ symbolic manipulation library.
11
11
12
12
add-apt-repository ppa:symengine/ppa
13
13
apt-get update
14
- apt-get install python-symengine
14
+ apt-get install python-symengine # or python3-symengine if using python3
15
15
16
16
### Conda package manager
17
17
Original file line number Diff line number Diff line change 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:
@@ -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' ,
You can’t perform that action at this time.
0 commit comments