Skip to content

Commit

Permalink
Support Python 3.13, drop support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Oct 16, 2024
1 parent 442193d commit 3d79234
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
uses: actions/checkout@v4
- uses: fizyk/actions-reuse/.github/actions/[email protected]
with:
python-version: "3.12"
python-version: "3.13"
command: tbump --dry-run --only-patch $(pipenv run tbump current-version)"-x"
towncrier:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: fizyk/actions-reuse/.github/actions/[email protected]
with:
python-version: "3.12"
python-version: "3.13"
command: towncrier check --compare-with origin/main
fetch-depth: 0
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.9]
python-version: ["3.9", "3.10", "3.11", "3.12", "pypy-3.10"]
env:
OS: ubuntu-latest
PYTHON: ${{ matrix.python-version }}
Expand Down
1 change: 1 addition & 0 deletions newsfragments/+09443f1f.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Declare support for Python 3.13
1 change: 1 addition & 0 deletions newsfragments/+7aff466a.break.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop support for Python 3.8 (As it reached EOL already)
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
Expand All @@ -34,7 +34,7 @@ dependencies = [
"boto3",
"boto3-stubs[dynamodb]",
]
requires-python = ">= 3.8"
requires-python = ">= 3.9"

[project.urls]
"Source" = "https://github.com/ClearcodeHQ/pytest-dynamodb"
Expand Down Expand Up @@ -62,7 +62,7 @@ testpaths = "tests"

[tool.black]
line-length = 80
target-version = ['py38']
target-version = ['py39']
include = '.*\.pyi?$'

[tool.ruff]
Expand Down

0 comments on commit 3d79234

Please sign in to comment.