Skip to content

Commit

Permalink
CICD: fix PyPy version
Browse files Browse the repository at this point in the history
The error from CI was:

    Run actions/setup-python@v2
      with:
        python-version: pypy3
        token: ***
    Error: PyPy 3.6 not found
  • Loading branch information
pierky committed Nov 24, 2022
1 parent 368a5e0 commit b81eae6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ jobs:
- 3.9 # Reference version used to run integration tests;
# to keep in sync with 'if: ' statements in the rest
# of this file.
- pypy3
- pypy3.8 # To keep in sync with other pypy releases referenced in the
# "Docker image tests" and "Push Docker image to Docker Hub"
# sections of this file.

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -371,7 +373,7 @@ jobs:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.6

Expand Down

0 comments on commit b81eae6

Please sign in to comment.