Skip to content

Commit dba9a9c

Browse files
authored
increase minimum scipy to 1.5.0 (#1919)
1 parent c78ec3b commit dba9a9c

9 files changed

+13
-8
lines changed

benchmarks/asv.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
"build": "",
118118
"numpy": "1.16.5",
119119
"pandas": "0.25.0",
120-
"scipy": "1.4.0",
120+
"scipy": "1.5.0",
121121
// Note: these don't have a minimum in setup.py
122122
"h5py": "3.1.0",
123123
"ephem": "3.7.6.0",

ci/requirements-py3.10.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
- python=3.10
2222
- pytz
2323
- requests
24-
- scipy >= 1.4.0
24+
- scipy >= 1.5.0
2525
- statsmodels
2626
- pip:
2727
- nrel-pysam>=2.0

ci/requirements-py3.11.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
- python=3.11
2222
- pytz
2323
- requests
24-
- scipy >= 1.4.0
24+
- scipy >= 1.5.0
2525
- statsmodels
2626
- pip:
2727
- nrel-pysam>=2.0

ci/requirements-py3.7-min.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies:
1616
- h5py==3.1.0
1717
- numpy==1.16.0
1818
- pandas==0.25.0
19-
- scipy==1.4.0
19+
- scipy==1.5.0
2020
- pytest-rerunfailures # conda version is >3.6
2121
- pytest-remotedata # conda package is 0.3.0, needs > 0.3.1
2222
- requests-mock

ci/requirements-py3.7.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
- python=3.7
2222
- pytz
2323
- requests
24-
- scipy >= 1.4.0
24+
- scipy >= 1.5.0
2525
- statsmodels
2626
- pip:
2727
- nrel-pysam>=2.0

ci/requirements-py3.8.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
- python=3.8
2222
- pytz
2323
- requests
24-
- scipy >= 1.4.0
24+
- scipy >= 1.5.0
2525
- statsmodels
2626
- pip:
2727
- nrel-pysam>=2.0

ci/requirements-py3.9.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
- python=3.9
2222
- pytz
2323
- requests
24-
- scipy >= 1.4.0
24+
- scipy >= 1.5.0
2525
- statsmodels
2626
- pip:
2727
- nrel-pysam>=2.0

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

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ Documentation
2828
* Fixed a plotting issue in the IV curve gallery example (:pull:`1895`)
2929
* Fixed `detect_clearsky` example in `clearsky.rst` (:issue:`1914`)
3030

31+
Requirements
32+
~~~~~~~~~~~~
33+
* Minimum version of scipy advanced from 1.4.0 to 1.5.0. (:issue:`1918`, :pull:`1919`)
34+
35+
3136
Contributors
3237
~~~~~~~~~~~~
3338
* Arjan Keeman (:ghuser:`akeeman`)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
'pandas >= 0.25.0',
3737
'pytz',
3838
'requests',
39-
'scipy >= 1.4.0',
39+
'scipy >= 1.5.0',
4040
'h5py',
4141
'importlib-metadata; python_version < "3.8"']
4242

0 commit comments

Comments
 (0)