Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Commit

Permalink
!fixup check pandas version
Browse files Browse the repository at this point in the history
  • Loading branch information
fphammerle committed Dec 31, 2020
1 parent 494b9e4 commit e2ca0f4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,12 @@ jobs:
- run: pipenv install --python "$PYTHON_VERSION" --deploy --dev
env:
PYTHON_VERSION: ${{ matrix.python-version }}
- run: '[ -z "$PANDAS_VERSION" ] || pipenv install --selective-upgrade "pandas==$PANDAS_VERSION"'
# `pipenv install --selective-upgrade "pandas==$PANDAS_VERSION"` was not effective
- run: '[ -z "$PANDAS_VERSION" ] || pipenv run pip install "pandas==$PANDAS_VERSION"'
env:
PANDAS_VERSION: ${{ matrix.pandas-version }}
- run: git diff
- run: '[ -z "$PANDAS_VERSION" ] || pipenv run pip freeze | grep pandas'
env:
PANDAS_VERSION: ${{ matrix.pandas-version }}
- run: pipenv graph
Expand Down

0 comments on commit e2ca0f4

Please sign in to comment.