Skip to content

Commit b25b29b

Browse files
authored
added python 3.12 to the CI and drop py3.7 (#423)
1 parent f3aca3d commit b25b29b

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [3.7,3.8,3.9,"3.10"]
10+
python-version: [3.8,3.9,"3.10","3.12"]
1111
steps:
1212
- name: Check out code from GitHub
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
- name: Set up Python ${{ matrix.python-version }}
1515
id: python
1616
uses: actions/setup-python@v4
@@ -26,10 +26,10 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
python-version: [3.8,3.9,"3.10"]
29+
python-version: [3.8,3.9,"3.10","3.12"]
3030
steps:
3131
- name: Check out code from GitHub
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333
- name: Build rabbitmq:tls container
3434
run: docker build -t rabbitmq:tls .
3535
- name: Set up Python ${{ matrix.python-version }}
@@ -56,7 +56,7 @@ jobs:
5656
python-version: [3.8]
5757
steps:
5858
- name: Check out code from GitHub
59-
uses: actions/checkout@v3
59+
uses: actions/checkout@v4
6060
- name: Set up Python ${{ matrix.python-version }}
6161
id: python
6262
uses: actions/setup-python@v4

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
{pypy3,3.7,3.8,3.9,3.10}-unit
4-
{pypy3,3.7,3.8,3.9.3.10}-integration-rabbitmq
3+
{pypy3,3.12,3.8,3.9,3.10}-unit
4+
{pypy3,3.12,3.8,3.9.3.10}-integration-rabbitmq
55
flake8
66
apicheck
77
pydocstyle
@@ -22,8 +22,8 @@ commands =
2222
integration: py.test -xv -E rabbitmq t/integration {posargs:-n2}
2323
basepython =
2424
flake8,apicheck,linkcheck,pydocstyle: python3.8
25-
pypy3: pypy3.9
26-
3.7: python3.7
25+
pypy3: pypy3.10
26+
3.12: python3.12
2727
3.8: python3.8
2828
3.9: python3.9
2929
3.10: python3.10

0 commit comments

Comments
 (0)