Skip to content

Commit

Permalink
add missing requests dependency (#726)
Browse files Browse the repository at this point in the history
  • Loading branch information
wholmgren authored May 15, 2019
1 parent 608cc01 commit f38fe07
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/sphinx/source/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
22 changes: 22 additions & 0 deletions docs/sphinx/source/whatsnew/v0.6.3.rst
Original file line number Diff line number Diff line change
@@ -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`)
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,14 @@

DISTNAME = 'pvlib'
LICENSE = 'BSD 3-Clause'
AUTHOR = 'PVLIB Python Developers'
AUTHOR = 'pvlib python Developers'
MAINTAINER_EMAIL = '[email protected]'
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']
Expand Down

0 comments on commit f38fe07

Please sign in to comment.