Skip to content

Commit fb1ea7b

Browse files
committed
Use pandas 2.0.2 when available due to bug (pandas-dev/pandas#56131). Windows OS solution pending
1 parent 1fb1548 commit fb1ea7b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/python-package.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,7 @@ jobs:
3939
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
4040
- name: Test with pytest
4141
run: |
42-
pip install pandas==2.0.2
42+
if [[ "${{ matrix.python-version }}" > "3.7" ]]; then
43+
pip install pandas==2.0.2
44+
fi
4345
pytest -m "not plotter" -s

0 commit comments

Comments
 (0)