Skip to content

Commit

Permalink
MAINT: Bump versions for 0.12 dev round
Browse files Browse the repository at this point in the history
Bump minimums
  • Loading branch information
bashtage committed Jan 25, 2020
1 parent 1f9f0bd commit 9ca5cbd
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 23 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ matrix:
env:
- PYTHON=3.7
- PANDAS=0.25
- SCIPY=1.2
- NUMPY=1.17
- SCIPY=1.3
- LINT=true
- COVERAGE=true
- PYTEST_OPTIONS=
Expand All @@ -60,16 +61,16 @@ matrix:
- PYTHON=3.6
- NUMPY=1.16
- PANDAS=0.24
- SCIPY=1.1
- SCIPY=1.2
- BLAS="nomkl blas=*=openblas"
- COVERAGE=true
- PYTEST_OPTIONS=
# Python 3.6 + oldest packages
- python: 3.6
env:
- PYTHON=3.5
- NUMPY=1.14
- SCIPY=1.0
- NUMPY=1.15
- SCIPY=1.1
- PANDAS=0.23
- MATPLOTLIB=2
- LINT=true
Expand Down
8 changes: 4 additions & 4 deletions INSTALL.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Dependencies
------------

python >= 3.5
python >= 3.6

www.python.org

numpy >= 1.14
numpy >= 1.15

www.numpy.org

scipy >= 1.0
scipy >= 1.1

www.scipy.org

pandas >= 0.21
pandas >= 0.23

pandas.pydata.org

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ build_script:
- wmic cpu get caption, name, numberofcores
- If Defined PY_MAJOR_VER ( call tools\ci\appveyor_conda.bat ) else ( call tools\ci\appveyor_pip.bat )
# Pin to 1.29 for now due to test discovery issues
- python -m pip install upgrade pip
- python -m pip install --upgrade pip
- pip install pytest "pytest-xdist==1.29" pytest-randomly
- if Defined PYTEST_DIRECTIVES ( pip install -e . ) else ( pip install . )

Expand Down
8 changes: 4 additions & 4 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ Dependencies

The current minimum dependencies are:

* `Python <https://www.python.org>`__ >= 3.5
* `NumPy <https://www.scipy.org/>`__ >= 1.14
* `SciPy <https://www.scipy.org/>`__ >= 1.0
* `Pandas <https://pandas.pydata.org/>`__ >= 0.21
* `Python <https://www.python.org>`__ >= 3.6
* `NumPy <https://www.scipy.org/>`__ >= 1.15
* `SciPy <https://www.scipy.org/>`__ >= 1.1
* `Pandas <https://pandas.pydata.org/>`__ >= 0.23
* `Patsy <https://patsy.readthedocs.io/en/latest/>`__ >= 0.5.1

Cython is required to build from a git checkout but not to run or install from PyPI:
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ requires = [
"setuptools",
"wheel",
"cython>=0.29.14",
"numpy==1.14.5; python_version=='3.5'",
"numpy==1.14.5; python_version=='3.6'",
"numpy==1.14.5; python_version>='3.7'",
"numpy==1.14.4; python_version=='3.6'",
"numpy==1.15.4; python_version=='3.7'",
"numpy==1.17.5; python_version>='3.8'",
"scipy>=1.0",
"scipy>=1.1",
]
7 changes: 3 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
numpy>=1.14
scipy>=1.0
pandas>=0.21
numpy>=1.15
scipy>=1.1
pandas>=0.23
patsy>=0.5.1

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
###############################################################################
# Key Values that Change Each Release
###############################################################################
SETUP_REQUIREMENTS = {'numpy': '1.14', # released January 2018
'scipy': '1.0', # released October 2017
SETUP_REQUIREMENTS = {'numpy': '1.15', # released June 2018
'scipy': '1.1', # released May 2018
}

REQ_NOT_MET_MSG = """
Expand Down

0 comments on commit 9ca5cbd

Please sign in to comment.