Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = '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']
Expand Down