Skip to content

Commit 05e9d95

Browse files
committed
bump pandas min from 0.22.0 to 0.25.0
1 parent 8d0f863 commit 05e9d95

File tree

8 files changed

+11
-8
lines changed

8 files changed

+11
-8
lines changed

benchmarks/asv.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
{
117117
"python": "3.6",
118118
"numpy": "1.16.0",
119-
"pandas": "0.22.0",
119+
"pandas": "0.25.0",
120120
"scipy": "1.2.0",
121121
// Note: these don't have a minimum in setup.py
122122
"h5py": "2.10.0",

ci/requirements-py36-min.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies:
1616
- dataclasses
1717
- h5py==3.1.0
1818
- numpy==1.16.0
19-
- pandas==0.22.0
19+
- pandas==0.25.0
2020
- scipy==1.2.0
2121
- pytest-rerunfailures # conda version is >3.6
2222
- pytest-remotedata # conda package is 0.3.0, needs > 0.3.1

ci/requirements-py36.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- nose
1212
- numba
1313
- numpy >= 1.16.0
14-
- pandas >= 0.22.0
14+
- pandas >= 0.25.0
1515
- pip
1616
- pytest
1717
- pytest-cov

ci/requirements-py37.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- nose
1212
- numba
1313
- numpy >= 1.16.0
14-
- pandas >= 0.22.0
14+
- pandas >= 0.25.0
1515
- pip
1616
- pytest
1717
- pytest-cov

ci/requirements-py38.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- nose
1212
- numba
1313
- numpy >= 1.16.0
14-
- pandas >= 0.22.0
14+
- pandas >= 0.25.0
1515
- pip
1616
- pytest
1717
- pytest-cov

ci/requirements-py39.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- nose
1212
# - numba # python 3.9 compat in early 2021
1313
- numpy >= 1.16.0
14-
- pandas >= 0.22.0
14+
- pandas >= 0.25.0
1515
- pip
1616
- pytest
1717
- pytest-cov

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

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Bug fixes
1313
~~~~~~~~~
1414
* :py:func:`pvlib.irradiance.get_total_irradiance` and
1515
:py:func:`pvlib.solarposition.spa_python` now raise an error instead
16-
of silently ignoring unknown parameters (:ghpull:`1437`)
16+
of silently ignoring unknown parameters (:pull:`1437`)
17+
1718
Testing
1819
~~~~~~~
1920

@@ -23,8 +24,10 @@ Documentation
2324
Benchmarking
2425
~~~~~~~~~~~~~
2526
* Updated version of numba in asv.conf from 0.36.1 to 0.40.0 to solve numba/numpy conflict. (:issue:`1439`, :pull:`1440`)
27+
2628
Requirements
2729
~~~~~~~~~~~~
30+
* Minimum pandas version increased to v0.25.0, released July 18, 2019.
2831

2932
Contributors
3033
~~~~~~~~~~~~

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
URL = 'https://github.com/pvlib/pvlib-python'
4040

4141
INSTALL_REQUIRES = ['numpy >= 1.16.0',
42-
'pandas >= 0.22.0',
42+
'pandas >= 0.25.0',
4343
'pytz',
4444
'requests',
4545
'scipy >= 1.2.0',

0 commit comments

Comments
 (0)