##// END OF EJS Templates
Install older version of numpy to test on Python 3.3
Thomas Kluyver -
Show More
@@ -191,7 +191,7 b' extras_require = dict('
191 parallel = ['ipyparallel'],
191 parallel = ['ipyparallel'],
192 qtconsole = ['qtconsole'],
192 qtconsole = ['qtconsole'],
193 doc = ['Sphinx>=1.3'],
193 doc = ['Sphinx>=1.3'],
194 test = ['nose>=0.10.1', 'requests', 'testpath', 'pygments', 'nbformat', 'ipykernel', 'numpy'],
194 test = ['nose>=0.10.1', 'requests', 'testpath', 'pygments', 'nbformat', 'ipykernel'],
195 terminal = [],
195 terminal = [],
196 kernel = ['ipykernel'],
196 kernel = ['ipykernel'],
197 nbformat = ['nbformat'],
197 nbformat = ['nbformat'],
@@ -214,6 +214,8 b' install_requires = ['
214 # but requires pip >= 6. pip < 6 ignores these.
214 # but requires pip >= 6. pip < 6 ignores these.
215
215
216 extras_require.update({
216 extras_require.update({
217 'test:python_version >= "3.4"': ['numpy'],
218 'test:python_version < "3.4"': ['numpy<1.12'],
217 ':python_version == "3.3"': ['pathlib2'],
219 ':python_version == "3.3"': ['pathlib2'],
218 ':sys_platform != "win32"': ['pexpect'],
220 ':sys_platform != "win32"': ['pexpect'],
219 ':sys_platform == "darwin"': ['appnope'],
221 ':sys_platform == "darwin"': ['appnope'],
General Comments 0
You need to be logged in to leave comments. Login now