Skip to content

Commit 8d4811a

Browse files
committed
cap pandas version <3.0
1 parent 2352c50 commit 8d4811a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/hsp2-pip-install-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
pandas-version: ['']
4444
include:
4545
- python-version: '3.11'
46-
pandas-version: pandas>2.0
46+
pandas-version: pandas>2.0,<3.0
4747
coverage: true
4848
- python-version: '3.11'
4949
pandas-version: pandas>1.5,<2.0

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies:
1010
# Running HSP2
1111
- scipy # Scipy also installs numpy
1212
# Pandas installs most scientific Python modules, such as Numpy, etc.
13-
- pandas
13+
- pandas <3.0
1414
- numba
1515
- numpy
1616
- hdf5

environment_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
# Running HSP2
1313
- scipy # Scipy also installs numpy
1414
# Pandas installs most scientific Python modules, such as Numpy, etc.
15-
- pandas >=2.0
15+
- pandas >=2.0,<3.0
1616
- numba
1717
- numpy
1818
- hdf5

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies = [
1414
"cltoolbox",
1515
"numba",
1616
"numpy<2.0",
17-
"pandas",
17+
"pandas<3.0",
1818
"tables",
1919
"pyparsing"
2020
]

0 commit comments

Comments
 (0)