We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fb1548 commit fb1ea7bCopy full SHA for fb1ea7b
.github/workflows/python-package.yml
@@ -39,5 +39,7 @@ jobs:
39
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
40
- name: Test with pytest
41
run: |
42
- pip install pandas==2.0.2
+ if [[ "${{ matrix.python-version }}" > "3.7" ]]; then
43
+ pip install pandas==2.0.2
44
+ fi
45
pytest -m "not plotter" -s
0 commit comments