From eb60b28a7ac3ecc9a2df22730fc4d8dc167f73eb Mon Sep 17 00:00:00 2001 From: Will Holmgren Date: Wed, 15 May 2019 11:08:48 -0700 Subject: [PATCH] add missing requests dependency --- docs/sphinx/source/whatsnew.rst | 1 + docs/sphinx/source/whatsnew/v0.6.3.rst | 22 ++++++++++++++++++++++ setup.py | 3 ++- 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 docs/sphinx/source/whatsnew/v0.6.3.rst diff --git a/docs/sphinx/source/whatsnew.rst b/docs/sphinx/source/whatsnew.rst index 02344c930c..1250e8e05c 100644 --- a/docs/sphinx/source/whatsnew.rst +++ b/docs/sphinx/source/whatsnew.rst @@ -6,6 +6,7 @@ What's New These are new features and improvements of note in each release. +.. include:: whatsnew/v0.6.3.rst .. include:: whatsnew/v0.6.2.rst .. include:: whatsnew/v0.6.1.rst .. include:: whatsnew/v0.6.0.rst diff --git a/docs/sphinx/source/whatsnew/v0.6.3.rst b/docs/sphinx/source/whatsnew/v0.6.3.rst new file mode 100644 index 0000000000..004e0d6c50 --- /dev/null +++ b/docs/sphinx/source/whatsnew/v0.6.3.rst @@ -0,0 +1,22 @@ +.. _whatsnew_0630: + +v0.6.3 (May 15, 2019) +--------------------- + +This is a minor release on top of v0.6.2 to fix an installation issue. +We recommend that all users of v0.6.1 and v0.6.2 upgrade to this release. + +**Python 2.7 support will end on June 1, 2019**. Releases made after this +date will require Python 3. This release is likely to be the last that +supports Python 2.7. (:issue:`501`) + + +Bug fixes +~~~~~~~~~ +* Fix installation issue due to missing ``requests`` dependency. + (:issue:`725`) + + +Contributors +~~~~~~~~~~~~ +* Will Holmgren (:ghuser:`wholmgren`) diff --git a/setup.py b/setup.py index 1f79de1018..0a43d8076b 100755 --- a/setup.py +++ b/setup.py @@ -33,13 +33,14 @@ DISTNAME = 'pvlib' LICENSE = 'BSD 3-Clause' -AUTHOR = 'PVLIB Python Developers' +AUTHOR = 'pvlib python Developers' MAINTAINER_EMAIL = 'holmgren@email.arizona.edu' URL = 'https://github.com/pvlib/pvlib-python' INSTALL_REQUIRES = ['numpy >= 1.10.1', 'pandas >= 0.16.0', 'pytz', + 'requests', 'six', ] TESTS_REQUIRE = ['pytest', 'pytest-cov', 'pytest-mock', 'nose']