Skip to content

Commit 8e8af95

Browse files
authored
Merge pull request #519 from ClearcodeHQ/python3.13
Support Python 3.13, drop support for Python 3.8
2 parents a2b6f65 + f0bb1e9 commit 8e8af95

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.github/workflows/pr-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
uses: actions/checkout@v4
1313
- uses: fizyk/actions-reuse/.github/actions/[email protected]
1414
with:
15-
python-version: "3.12"
15+
python-version: "3.13"
1616
command: tbump --dry-run --only-patch $(pipenv run tbump current-version)"-x"
1717
towncrier:
1818
runs-on: ubuntu-latest
1919
if: ${{ github.actor != 'dependabot[bot]' }}
2020
steps:
2121
- uses: fizyk/actions-reuse/.github/actions/[email protected]
2222
with:
23-
python-version: "3.12"
23+
python-version: "3.13"
2424
command: towncrier check --compare-with origin/main
2525
fetch-depth: 0

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.9]
19+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13", pypy-3.10]
2020
env:
2121
OS: ubuntu-latest
2222
PYTHON: ${{ matrix.python-version }}

newsfragments/+5a2cb9ce.break.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Drop support for Python 3.8 (Already reached EOL)

newsfragments/+78cdaf8b.feature.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Declare Support for Python 3.13

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ classifiers = [
1717
"Operating System :: OS Independent",
1818
"Programming Language :: Python",
1919
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.8",
2120
"Programming Language :: Python :: 3.9",
2221
"Programming Language :: Python :: 3.10",
2322
"Programming Language :: Python :: 3.11",
2423
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2525
"Programming Language :: Python :: 3 :: Only",
2626
"Programming Language :: Python :: Implementation :: PyPy",
2727
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -34,7 +34,7 @@ dependencies = [
3434
"mirakuru",
3535
"pika",
3636
]
37-
requires-python = ">= 3.8"
37+
requires-python = ">= 3.9"
3838

3939
[project.urls]
4040
"Source" = "https://github.com/ClearcodeHQ/pytest-rabbitmq"
@@ -63,7 +63,7 @@ testpaths = "tests"
6363

6464
[tool.black]
6565
line-length = 100
66-
target-version = ['py38']
66+
target-version = ['py39']
6767
include = '.*\.pyi?$'
6868

6969
[tool.ruff]

0 commit comments

Comments
 (0)