Skip to content

Commit 41cfe53

Browse files
committed
try explicit pypy version
1 parent 15b178b commit 41cfe53

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [3.7,3.8,3.9,pypy3]
10+
python-version: [3.7,3.8,3.9,pypy-3.9]
1111
steps:
1212
- name: Check out code from GitHub
1313
uses: actions/checkout@v3
@@ -26,15 +26,15 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
python-version: [3.7,3.8,3.9,pypy3]
29+
python-version: [3.7,3.8,3.9,pypy-3.9]
3030
steps:
3131
- name: Check out code from GitHub
3232
uses: actions/checkout@v3
3333
- name: Build rabbitmq:tls container
3434
run: docker build -t rabbitmq:tls .
3535
- name: Set up Python ${{ matrix.python-version }}
3636
id: python
37-
uses: actions/setup-python@vv
37+
uses: actions/setup-python@v4
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040
- name: Install dependencies
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
CELERY_ENABLE_SPEEDUPS=1 python setup.py develop
4747
tox -v -e ${{ matrix.python-version }}-integration-rabbitmq -- -v
48-
if: ${{ matrix.python-version != 'pypy3'}}
48+
if: ${{ matrix.python-version != 'pypy-3.9'}}
4949

5050
#################### Linters and checkers ####################
5151
lint:

0 commit comments

Comments
 (0)