Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

try explicit pypy version #401

Merged
merged 1 commit into from Dec 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7,3.8,3.9,pypy3]
python-version: [3.7,3.8,3.9,pypy-3.9]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
Expand All @@ -26,15 +26,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7,3.8,3.9,pypy3]
python-version: [3.7,3.8,3.9,pypy-3.9]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
- name: Build rabbitmq:tls container
run: docker build -t rabbitmq:tls .
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@vv
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -45,7 +45,7 @@ jobs:
run: |
CELERY_ENABLE_SPEEDUPS=1 python setup.py develop
tox -v -e ${{ matrix.python-version }}-integration-rabbitmq -- -v
if: ${{ matrix.python-version != 'pypy3'}}
if: ${{ matrix.python-version != 'pypy-3.9'}}

#################### Linters and checkers ####################
lint:
Expand Down