Skip to content

Commit 5ed7345

Browse files
authored
Added Python 3.13 to CI (#440)
1 parent cc10bbe commit 5ed7345

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: blacksmith-4vcpu-ubuntu-2204
88
strategy:
99
matrix:
10-
python-version: [3.8,3.9,"3.10","3.12"]
10+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1111
steps:
1212
- name: Check out code from GitHub
1313
uses: actions/checkout@v4
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: blacksmith-4vcpu-ubuntu-2204
2727
strategy:
2828
matrix:
29-
python-version: [3.8,3.9,"3.10","3.12"]
29+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
3030
steps:
3131
- name: Check out code from GitHub
3232
uses: actions/checkout@v4
@@ -53,7 +53,7 @@ jobs:
5353
runs-on: blacksmith-4vcpu-ubuntu-2204
5454
strategy:
5555
matrix:
56-
python-version: [3.8]
56+
python-version: ['3.13']
5757
steps:
5858
- name: Check out code from GitHub
5959
uses: actions/checkout@v4

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,6 @@ Documentation/
2626
.venv/
2727
coverage.xml
2828
htmlcov/
29+
.vscode/
30+
.python-version
31+
.idea/

tox.ini

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
{pypy3,3.12,3.8,3.9,3.10}-unit
4-
{pypy3,3.12,3.8,3.9.3.10}-integration-rabbitmq
3+
{3.8,3.9,3.10,3.11,3.12,3.13,pypy3}-unit
4+
{3.8,3.9,3.10,3.11,3.12,3.13,pypy3}-integration-rabbitmq
55
flake8
66
apicheck
77
pydocstyle
@@ -23,12 +23,14 @@ commands =
2323
unit: py.test -xv --cov=amqp --cov-report=xml --no-cov-on-fail t/unit {posargs}
2424
integration: py.test -xv -E rabbitmq t/integration {posargs:-n2}
2525
basepython =
26-
flake8,apicheck,linkcheck,pydocstyle: python3.8
26+
flake8,apicheck,linkcheck,pydocstyle: python3.13
2727
pypy3: pypy3.10
28-
3.12: python3.12
2928
3.8: python3.8
3029
3.9: python3.9
3130
3.10: python3.10
31+
3.11: python3.11
32+
3.12: python3.12
33+
3.13: python3.13
3234
install_command = python -m pip --disable-pip-version-check install {opts} {packages}
3335
allowlist_externals = *
3436
commands_pre =

0 commit comments

Comments
 (0)