Skip to content

Commit

Permalink
added python 3.12 to the CI and drop py3.7 (celery#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
auvipy authored Oct 12, 2023
1 parent f3aca3d commit b25b29b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7,3.8,3.9,"3.10"]
python-version: [3.8,3.9,"3.10","3.12"]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v4
Expand All @@ -26,10 +26,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8,3.9,"3.10"]
python-version: [3.8,3.9,"3.10","3.12"]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build rabbitmq:tls container
run: docker build -t rabbitmq:tls .
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -56,7 +56,7 @@ jobs:
python-version: [3.8]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
id: python
uses: actions/setup-python@v4
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
{pypy3,3.7,3.8,3.9,3.10}-unit
{pypy3,3.7,3.8,3.9.3.10}-integration-rabbitmq
{pypy3,3.12,3.8,3.9,3.10}-unit
{pypy3,3.12,3.8,3.9.3.10}-integration-rabbitmq
flake8
apicheck
pydocstyle
Expand All @@ -22,8 +22,8 @@ commands =
integration: py.test -xv -E rabbitmq t/integration {posargs:-n2}
basepython =
flake8,apicheck,linkcheck,pydocstyle: python3.8
pypy3: pypy3.9
3.7: python3.7
pypy3: pypy3.10
3.12: python3.12
3.8: python3.8
3.9: python3.9
3.10: python3.10
Expand Down

0 comments on commit b25b29b

Please sign in to comment.