Skip to content

Commit

Permalink
Add check for pandas 1.0 back
Browse files Browse the repository at this point in the history
this time, clearing the cache
  • Loading branch information
matentzn committed Oct 24, 2024
1 parent 7bda431 commit 43f725c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/qc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,18 @@ jobs:

- name: Test with pytest and generate coverage file
run: poetry run tox -e py

#-----------------------------------------------------
# QC with pandas 1.x.x
# Note: The lock file will always have pandas > 2.0.0
#-----------------------------------------------------
- name: Test with pandas<2.0.0
run: |
poetry add "pandas<2.0.0"
# Optionally clear poetry's cache to ensure no old versions interfere
poetry cache clear pypi --all
# Reinstall dependencies
poetry install --no-interaction
poetry run tox -e py

0 comments on commit 43f725c

Please sign in to comment.