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
2 changes: 1 addition & 1 deletion benchmarks/asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
"build": "",
"numpy": "1.16.5",
"pandas": "0.25.0",
"scipy": "1.4.0",
"scipy": "1.5.0",
// Note: these don't have a minimum in setup.py
"h5py": "3.1.0",
"ephem": "3.7.6.0",
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements-py3.10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
- python=3.10
- pytz
- requests
- scipy >= 1.4.0
- scipy >= 1.5.0
- statsmodels
- pip:
- nrel-pysam>=2.0
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements-py3.11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
- python=3.11
- pytz
- requests
- scipy >= 1.4.0
- scipy >= 1.5.0
- statsmodels
- pip:
- nrel-pysam>=2.0
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements-py3.7-min.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies:
- h5py==3.1.0
- numpy==1.16.0
- pandas==0.25.0
- scipy==1.4.0
- scipy==1.5.0
- pytest-rerunfailures # conda version is >3.6
- pytest-remotedata # conda package is 0.3.0, needs > 0.3.1
- requests-mock
2 changes: 1 addition & 1 deletion ci/requirements-py3.7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
- python=3.7
- pytz
- requests
- scipy >= 1.4.0
- scipy >= 1.5.0
- statsmodels
- pip:
- nrel-pysam>=2.0
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements-py3.8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
- python=3.8
- pytz
- requests
- scipy >= 1.4.0
- scipy >= 1.5.0
- statsmodels
- pip:
- nrel-pysam>=2.0
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements-py3.9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
- python=3.9
- pytz
- requests
- scipy >= 1.4.0
- scipy >= 1.5.0
- statsmodels
- pip:
- nrel-pysam>=2.0
Expand Down
5 changes: 5 additions & 0 deletions docs/sphinx/source/whatsnew/v0.10.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ Documentation
* Fixed a plotting issue in the IV curve gallery example (:pull:`1895`)
* Fixed `detect_clearsky` example in `clearsky.rst` (:issue:`1914`)

Requirements
~~~~~~~~~~~~
* Minimum version of scipy advanced from 1.4.0 to 1.5.0. (:issue:`1918`, :pull:`1919`)


Contributors
~~~~~~~~~~~~
* Arjan Keeman (:ghuser:`akeeman`)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
'pandas >= 0.25.0',
'pytz',
'requests',
'scipy >= 1.4.0',
'scipy >= 1.5.0',
'h5py',
'importlib-metadata; python_version < "3.8"']

Expand Down