Skip to content

Commit

Permalink
Rename test and increase min numpy version to 1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
holgern committed Feb 19, 2020
1 parent d4aabbc commit 4308659
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,25 @@ matrix:
- name: "Python 3.5 - scikit 0.19.2"
python: "3.7"
env: DISTRIB="conda" PYTHON_VERSION="3.5"
NUMPY_VERSION="1.11.0" SCIPY_VERSION="0.18.0" PYAML_VERSION="16.9.0"
NUMPY_VERSION="1.12.0" SCIPY_VERSION="0.18.0" PYAML_VERSION="16.9.0"
SCIKIT_LEARN_VERSION="0.19.2" MATPLOTLIB_VERSION="2.0.0" COVERAGE="false"
JOBLIB_VERSION="0.11"
- name: "Python 3.6 - scikit 0.20.4"
python: "3.7"
env: DISTRIB="conda" PYTHON_VERSION="3.6"
NUMPY_VERSION="1.12.0" SCIPY_VERSION="0.19.1" PYAML_VERSION="16.12.0"
NUMPY_VERSION="1.14.0" SCIPY_VERSION="0.19.1" PYAML_VERSION="16.12.0"
SCIKIT_LEARN_VERSION="0.20.4" MATPLOTLIB_VERSION="2.0.0" COVERAGE="false"
JOBLIB_VERSION="0.11"
- name: "Python 3.7 - scikit 0.21.3"
python: "3.7"
env: DISTRIB="conda" PYTHON_VERSION="3.7"
NUMPY_VERSION="1.13.0" SCIPY_VERSION="1.0.0" PYAML_VERSION="17.8.0"
NUMPY_VERSION="1.15.0" SCIPY_VERSION="1.0.0" PYAML_VERSION="17.8.0"
SCIKIT_LEARN_VERSION="0.21.3" MATPLOTLIB_VERSION="*" COVERAGE="true"
JOBLIB_VERSION="0.12"
- name: "Python 3.7 - scikit 0.22.1"
python: "3.7"
env: DISTRIB="conda" PYTHON_VERSION="3.7"
NUMPY_VERSION="1.14.0" SCIPY_VERSION="1.2.0" PYAML_VERSION="18.11.0"
NUMPY_VERSION="1.16.0" SCIPY_VERSION="1.2.0" PYAML_VERSION="18.11.0"
SCIKIT_LEARN_VERSION="0.22.1" MATPLOTLIB_VERSION="*" COVERAGE="true"
JOBLIB_VERSION="0.13"
- name: "Python 3.8 latest package versions"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
requires = [
"setuptools",
"wheel",
"numpy>=1.11",
"numpy>=1.12",
"scipy>=0.18",
"scikit-learn>=0.19.1",
"pyaml>=16.9",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.11
numpy>=1.12
scipy>=0.18
scikit-learn>=0.19
matplotlib>=2.0.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
classifiers=CLASSIFIERS,
packages=['skopt', 'skopt.learning', 'skopt.optimizer', 'skopt.space',
'skopt.learning.gaussian_process', 'skopt.sampler'],
install_requires=['joblib>=0.11', 'pyaml>=16.9', 'numpy>=1.11.0',
install_requires=['joblib>=0.11', 'pyaml>=16.9', 'numpy>=1.12.0',
'scipy>=0.18.0',
'scikit-learn>=0.19.1'],
extras_require={
Expand Down
File renamed without changes.

0 comments on commit 4308659

Please sign in to comment.