Skip to content

Commit b26ef22

Browse files
mikofskiwholmgren
authored andcommitted
update to numpy-1.12.0 (#830)
* update to numpy-1.12.0 * update what's new to require numpy >= 1.12.0 * update both pandas and numpy requirements paint the bikeshed white: https://imgs.xkcd.com/comics/timeline_of_bicycle_design.png
1 parent 9a3d1b7 commit b26ef22

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

ci/requirements-py35-min.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ dependencies:
1313
- pytz
1414
- requests
1515
- pip:
16-
- numpy==1.10.4
16+
- numpy==1.12.0
1717
- pandas==0.18.1

docs/sphinx/source/whatsnew/v0.7.0.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ recommend all users of v0.6.3 upgrade to this release after checking API
88
compatibility notes.
99

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

1313
API Breaking Changes
1414
~~~~~~~~~~~~~~~~~~~~
@@ -30,7 +30,7 @@ API Changes with Deprecations
3030
- `temperature.sapm_cell` returns only the cell temperature, whereas the
3131
old `pvsystem.sapm_celltemp` returned a `DataFrame` with both cell and module temperatures.
3232
- Created `temperature.sapm_module` to return module temperature using the SAPM temperature model.
33-
- Changed the order of arguments for`pvsystem.sapm_celltemp`,
33+
- Changed the order of arguments for `pvsystem.sapm_celltemp`,
3434
`pvsystem.pvsyst_celltemp` and `PVSystem.sapm_celltemp` to be consistent
3535
among cell temperature model functions.
3636
- Removed `model` as a kwarg from `temperature.sapm_cell` and
@@ -191,6 +191,11 @@ Removal of prior version deprecations
191191
* Removed `ModelChain.singlediode` method.
192192
* Removed `ModelChain.prepare_inputs` clearsky assumption when no irradiance
193193
data was provided.
194+
195+
Requirements
196+
~~~~~~~~~~~~
197+
* numpy minimum increased to v1.12.0, released in 2017. (:issue:`830`)
198+
* pandas minimum increased to v1.18.1, released in 2016. (:issue:`748`)
194199

195200
Contributors
196201
~~~~~~~~~~~~
@@ -206,3 +211,4 @@ Contributors
206211
* Joseph Ranalli (:ghuser:`jranalli`)
207212
* Tony Lorenzo (:ghuser:`alorenzo175`)
208213
* Todd Karin (:ghuser:`toddkarin`)
214+
* Mark Mikofski (:ghuser:`mikofski`)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
MAINTAINER_EMAIL = '[email protected]'
3838
URL = 'https://github.com/pvlib/pvlib-python'
3939

40-
INSTALL_REQUIRES = ['numpy >= 1.10.4',
40+
INSTALL_REQUIRES = ['numpy >= 1.12.0',
4141
'pandas >= 0.18.1',
4242
'pytz',
4343
'requests']

0 commit comments

Comments
 (0)