From b306021f3c10f8e558db72f8a235db1b385808bd Mon Sep 17 00:00:00 2001 From: Will Holmgren Date: Mon, 8 Jul 2019 20:03:44 -0700 Subject: [PATCH 1/3] use pip for min numpy/pandas --- ci/requirements-py35-min.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/requirements-py35-min.yml b/ci/requirements-py35-min.yml index 867318439a..01b34c0a87 100644 --- a/ci/requirements-py35-min.yml +++ b/ci/requirements-py35-min.yml @@ -4,8 +4,6 @@ channels: dependencies: - coveralls - nose - - numpy=1.10.1 - - pandas=0.18.0 - pip - pytest - pytest-cov @@ -14,3 +12,6 @@ dependencies: - python=3.5 - pytz - requests + - pip: + - numpy==1.10.1 + - pandas==0.18.0 From ce0dccd6411bc11667e7889459cd7f11c4badfe2 Mon Sep 17 00:00:00 2001 From: Will Holmgren Date: Mon, 8 Jul 2019 20:16:05 -0700 Subject: [PATCH 2/3] bump ci versions --- ci/requirements-py35-min.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/requirements-py35-min.yml b/ci/requirements-py35-min.yml index 01b34c0a87..325083499c 100644 --- a/ci/requirements-py35-min.yml +++ b/ci/requirements-py35-min.yml @@ -13,5 +13,5 @@ dependencies: - pytz - requests - pip: - - numpy==1.10.1 - - pandas==0.18.0 + - numpy==1.10.4 + - pandas==0.18.1 From a46f1ab089b23c7632a6689d46dc1dc343802038 Mon Sep 17 00:00:00 2001 From: Will Holmgren Date: Tue, 9 Jul 2019 09:56:31 -0700 Subject: [PATCH 3/3] document minor min version bumps --- docs/sphinx/source/whatsnew/v0.7.0.rst | 5 ++++- setup.py | 4 ++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/sphinx/source/whatsnew/v0.7.0.rst b/docs/sphinx/source/whatsnew/v0.7.0.rst index cf2adfc9e6..98a2dc6469 100644 --- a/docs/sphinx/source/whatsnew/v0.7.0.rst +++ b/docs/sphinx/source/whatsnew/v0.7.0.rst @@ -4,10 +4,13 @@ v0.7.0 (MONTH DAY, YEAR) --------------------- This is a major release that drops support for Python 2 and Python 3.4. We -recommend all users of v0.6.3 upgrade to this release. +recommend all users of v0.6.3 upgrade to this release after checking API +compatibility notes. **Python 2.7 support ended on June 1, 2019**. (:issue:`501`) +**Minimum numpy version is now 1.10.4. Minimum pandas version is now 0.18.1.** + Contributors ~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index a4b41e6c00..f2e320ccbb 100755 --- a/setup.py +++ b/setup.py @@ -37,8 +37,8 @@ MAINTAINER_EMAIL = 'holmgren@email.arizona.edu' URL = 'https://github.com/pvlib/pvlib-python' -INSTALL_REQUIRES = ['numpy >= 1.10.1', - 'pandas >= 0.18.0', +INSTALL_REQUIRES = ['numpy >= 1.10.4', + 'pandas >= 0.18.1', 'pytz', 'requests'] TESTS_REQUIRE = ['nose', 'pytest', 'pytest-cov', 'pytest-mock',