Skip to content

Commit

Permalink
Drop 3.10 and add 3.13 Python support
Browse files Browse the repository at this point in the history
  • Loading branch information
paddyroddy committed Oct 8, 2024
1 parent 4b529d1 commit 9e75963
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
- uses: paddyroddy/.github/actions/python/deployment@f2115592179eb43cf106eeb181adcd003d4cba41 # v0
with:
pyproject-toml: ./pyproject.toml
python-version: "3.12"
python-version: "3.13"
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
project-directory: ./src/example
pyproject-toml: ./pyproject.toml
python-version: "3.12"
python-version: "3.13"
template-directory: ./documentation
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
- ubuntu-latest
- windows-latest
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
# yamllint disable-line rule:line-length
- uses: paddyroddy/.github/actions/python/tox@f2115592179eb43cf106eeb181adcd003d4cba41 # v0
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,9 @@ classifiers = [
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Typing :: Typed",
]
dependencies = []
Expand All @@ -40,7 +39,7 @@ optional-dependencies = {dev = [
"pdoc3",
]}
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.11"
urls = {Code = """\
https://github.com/paddyroddy/python-template\
""", Documentation = """\
Expand Down Expand Up @@ -143,9 +142,9 @@ overrides."tool.ruff.lint.isort.section-order".inline_arrays = false
legacy_tox_ini = """
[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
[gh-actions:env]
OS =
Expand Down

0 comments on commit 9e75963

Please sign in to comment.