-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add missing requests dependency (#726)
- Loading branch information
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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`) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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'] | ||
|