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

added python 3.12 to the CI and drop py3.7 #423

Merged
merged 1 commit into from Oct 12, 2023
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
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
@@ -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