Skip to content

Commit

Permalink
Pin pipenv to 2023.7.4 (#892)
Browse files Browse the repository at this point in the history
Avoids CI breakage due to removal of the `keep-outdated` cli flag.

Temporary solution, will be revisited, the issue will remain open.

See #891
  • Loading branch information
jw3 authored Jul 15, 2023
1 parent 0776ddf commit 573849c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pip install pipenv==2023.7.4 || pip install pipenv
pipenv install --dev --keep-outdated --python ${{ matrix.python-version }}
- name: Build
id: build
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
id: install_deps
run: |
python -m pip install --upgrade pip
pip install pipenv
pip install pipenv==2023.7.4 || pip install pipenv
pipenv install --dev --python ${{ matrix.python-version }}
echo ::set-output name=virt_env::$(pipenv --venv)
- name: Setup Bindings
Expand Down

0 comments on commit 573849c

Please sign in to comment.