Skip to content

update to numpy-1.12.0 #830

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 13, 2019
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
2 changes: 1 addition & 1 deletion ci/requirements-py35-min.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ dependencies:
- pytz
- requests
- pip:
- numpy==1.10.4
- numpy==1.12.0
- pandas==0.18.1
10 changes: 8 additions & 2 deletions docs/sphinx/source/whatsnew/v0.7.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ recommend all users of v0.6.3 upgrade to this release after checking API
compatibility notes.

**Python 2.7 support ended on June 1, 2019.** (:issue:`501`)
**Minimum numpy version is now 1.10.4. Minimum pandas version is now 0.18.1.**
**Minimum numpy version is now 1.12.0. Minimum pandas version is now 0.18.1.** (:issue:`830`, :issue:`748`)

API Breaking Changes
~~~~~~~~~~~~~~~~~~~~
Expand All @@ -30,7 +30,7 @@ API Changes with Deprecations
- `temperature.sapm_cell` returns only the cell temperature, whereas the
old `pvsystem.sapm_celltemp` returned a `DataFrame` with both cell and module temperatures.
- Created `temperature.sapm_module` to return module temperature using the SAPM temperature model.
- Changed the order of arguments for`pvsystem.sapm_celltemp`,
- Changed the order of arguments for `pvsystem.sapm_celltemp`,
`pvsystem.pvsyst_celltemp` and `PVSystem.sapm_celltemp` to be consistent
among cell temperature model functions.
- Removed `model` as a kwarg from `temperature.sapm_cell` and
Expand Down Expand Up @@ -187,6 +187,11 @@ Removal of prior version deprecations
* Removed `ModelChain.singlediode` method.
* Removed `ModelChain.prepare_inputs` clearsky assumption when no irradiance
data was provided.

Requirements
~~~~~~~~~~~~
* numpy minimum increased to v1.12.0, released in 2017. (:issue:`830`)
* pandas minimum increased to v1.18.1, released in 2016. (:issue:`748`)

Contributors
~~~~~~~~~~~~
Expand All @@ -202,3 +207,4 @@ Contributors
* Joseph Ranalli (:ghuser:`jranalli`)
* Tony Lorenzo (:ghuser:`alorenzo175`)
* Todd Karin (:ghuser:`toddkarin`)
* Mark Mikofski (:ghuser:`mikofski`)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
MAINTAINER_EMAIL = '[email protected]'
URL = 'https://github.com/pvlib/pvlib-python'

INSTALL_REQUIRES = ['numpy >= 1.10.4',
INSTALL_REQUIRES = ['numpy >= 1.12.0',
'pandas >= 0.18.1',
'pytz',
'requests']
Expand Down