Skip to content

Commit f38fe07

Browse files
authored
add missing requests dependency (pvlib#726)
1 parent 608cc01 commit f38fe07

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

docs/sphinx/source/whatsnew.rst

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ What's New
66

77
These are new features and improvements of note in each release.
88

9+
.. include:: whatsnew/v0.6.3.rst
910
.. include:: whatsnew/v0.6.2.rst
1011
.. include:: whatsnew/v0.6.1.rst
1112
.. include:: whatsnew/v0.6.0.rst
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.. _whatsnew_0630:
2+
3+
v0.6.3 (May 15, 2019)
4+
---------------------
5+
6+
This is a minor release on top of v0.6.2 to fix an installation issue.
7+
We recommend that all users of v0.6.1 and v0.6.2 upgrade to this release.
8+
9+
**Python 2.7 support will end on June 1, 2019**. Releases made after this
10+
date will require Python 3. This release is likely to be the last that
11+
supports Python 2.7. (:issue:`501`)
12+
13+
14+
Bug fixes
15+
~~~~~~~~~
16+
* Fix installation issue due to missing ``requests`` dependency.
17+
(:issue:`725`)
18+
19+
20+
Contributors
21+
~~~~~~~~~~~~
22+
* Will Holmgren (:ghuser:`wholmgren`)

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,14 @@
3333

3434
DISTNAME = 'pvlib'
3535
LICENSE = 'BSD 3-Clause'
36-
AUTHOR = 'PVLIB Python Developers'
36+
AUTHOR = 'pvlib python Developers'
3737
MAINTAINER_EMAIL = '[email protected]'
3838
URL = 'https://github.com/pvlib/pvlib-python'
3939

4040
INSTALL_REQUIRES = ['numpy >= 1.10.1',
4141
'pandas >= 0.16.0',
4242
'pytz',
43+
'requests',
4344
'six',
4445
]
4546
TESTS_REQUIRE = ['pytest', 'pytest-cov', 'pytest-mock', 'nose']

0 commit comments

Comments
 (0)