Skip to content

Commit da5328e

Browse files
committed
Clarify the required versions of dependent packages.
1 parent b6b4fc4 commit da5328e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cython>=0.16
22
numpy
3-
scipy
3+
scipy>-0.16.0

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
scipy
1+
scipy>=0.16.0

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ license_files=
2929
tests_require=
3030
pytest-cov
3131
hypothesis[numpy]
32-
scipy
32+
scipy>=0.16.0
3333
install_requires=scipy
3434
setup_requires=
3535
cython>=0.16
3636
numpy
37-
scipy
37+
scipy>=0.16.0
3838
packages=find:
3939
python_requires= >=2.7, <4, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
4040

tox.ini

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@ envlist = py27, py34, py35, py36, py37, py38, pypy, jython, distrib, docs
88
requires =
99
Cython>=0.16
1010
numpy
11-
scipy
11+
scipy>=0.16.0
1212
minversion = 1.7.2
1313
skip_missing_interpreters = true
1414

1515
[testenv]
1616
deps =
1717
hypothesis[numpy]
18-
scipy
18+
scipy>=0.16.0
1919
pytest-cov
20-
cython
20+
cython>=0.16
2121
commands =
2222
pytest
2323

@@ -26,9 +26,9 @@ deps=
2626
setuptools
2727
twine
2828
wheel
29-
Cython
29+
Cython>=0.16
3030
numpy
31-
scipy
31+
scipy>=0.16.0
3232
skip_install=true
3333
commands=
3434
{envpython} setup.py check
@@ -42,9 +42,9 @@ commands=
4242
changedir=doc
4343
deps=
4444
sphinx
45-
Cython
45+
Cython>=0.16
4646
numpy
47-
scipy
47+
scipy>=0.16.0
4848
commands=
4949
sphinx-build -q -W --keep-going -b html -d {envtmpdir}/doctrees source {envtmpdir}/html
5050
sphinx-build -q -W -b texinfo -d {envtmpdir}/doctrees source {envtmpdir}/texinfo

0 commit comments

Comments
 (0)