Skip to content

Commit

Permalink
ci: freeze pipenv version
Browse files Browse the repository at this point in the history
turns out the output of `pipenv run` is not meant to be stable?
pypa/pipenv#4027
  • Loading branch information
codl committed Mar 23, 2022
1 parent 7959c56 commit 5fbd981
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/scrape.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.10"
cache: 'pipenv'
- name: Install pipenv
run: pipx install pipenv
run: pip install "pipenv==2022.1.8"
- run: pipenv sync -d
- run: pipenv run python scrape_pokemon.py > pokemon-2.txt
- id: compare
Expand Down

0 comments on commit 5fbd981

Please sign in to comment.