diff --git a/ci/requirements-py35-min.yml b/ci/requirements-py35-min.yml index 867318439a..325083499c 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.4 + - pandas==0.18.1 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',