Skip to content

Commit d8f38dd

Browse files
authored
use pip for py35-min numpy/pandas (#748)
* use pip for min numpy/pandas * bump ci versions * document minor min version bumps
1 parent 91c6a55 commit d8f38dd

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

ci/requirements-py35-min.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ channels:
44
dependencies:
55
- coveralls
66
- nose
7-
- numpy=1.10.1
8-
- pandas=0.18.0
97
- pip
108
- pytest
119
- pytest-cov
@@ -14,3 +12,6 @@ dependencies:
1412
- python=3.5
1513
- pytz
1614
- requests
15+
- pip:
16+
- numpy==1.10.4
17+
- pandas==0.18.1

docs/sphinx/source/whatsnew/v0.7.0.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@ v0.7.0 (MONTH DAY, YEAR)
44
---------------------
55

66
This is a major release that drops support for Python 2 and Python 3.4. We
7-
recommend all users of v0.6.3 upgrade to this release.
7+
recommend all users of v0.6.3 upgrade to this release after checking API
8+
compatibility notes.
89

910
**Python 2.7 support ended on June 1, 2019**. (:issue:`501`)
1011

12+
**Minimum numpy version is now 1.10.4. Minimum pandas version is now 0.18.1.**
13+
1114

1215
Contributors
1316
~~~~~~~~~~~~

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
MAINTAINER_EMAIL = '[email protected]'
3838
URL = 'https://github.com/pvlib/pvlib-python'
3939

40-
INSTALL_REQUIRES = ['numpy >= 1.10.1',
41-
'pandas >= 0.18.0',
40+
INSTALL_REQUIRES = ['numpy >= 1.10.4',
41+
'pandas >= 0.18.1',
4242
'pytz',
4343
'requests']
4444
TESTS_REQUIRE = ['nose', 'pytest', 'pytest-cov', 'pytest-mock',

0 commit comments

Comments
 (0)