File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 7
7
import os
8
8
import platform
9
9
10
- if sys .version_info < (3 , 5 ):
11
- raise RuntimeError ('Only Python versions >= 3.5 are supported' )
12
-
13
10
from pkg_resources import parse_version
14
11
from setuptools import setup , find_packages , Extension
15
12
from setuptools .command .build_ext import build_ext
@@ -164,10 +161,10 @@ def build_extension(self, ext):
164
161
'pyparsing' ,
165
162
'jinja2>=2.7' ,
166
163
'py-cpuinfo;platform_system=="Windows"' ,
167
- 'setuptools>=24'
164
+ 'setuptools>=24.2 '
168
165
],
169
166
setup_requires = ['numpy>=1.10' ,
170
- 'setuptools>=24'
167
+ 'setuptools>=24.2 '
171
168
],
172
169
cmdclass = {'build_ext' : optional_build_ext },
173
170
provides = ['brian2' ],
@@ -194,5 +191,6 @@ def build_extension(self, ext):
194
191
'Programming Language :: Python' ,
195
192
'Programming Language :: Python :: 3' ,
196
193
'Topic :: Scientific/Engineering :: Bio-Informatics'
197
- ]
194
+ ],
195
+ python_requires = '>=3.5'
198
196
)
You can’t perform that action at this time.
0 commit comments