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
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