Skip to content

Commit

Permalink
Support Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Oct 17, 2023
1 parent 55cf3b2 commit 575157a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", pypy-3.8]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", pypy-3.8]
env:
OS: ubuntu-latest
PYTHON: ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
uses: actions/checkout@v4
- uses: fizyk/actions-reuse/.github/actions/[email protected]
with:
python-version: "3.11"
python-version: "3.12"
pipenv-install-options: "--skip-lock"
command: tbump --dry-run --only-patch $(pipenv run tbump current-version)"-x"
towncrier:
Expand All @@ -21,7 +21,7 @@ jobs:
steps:
- uses: fizyk/actions-reuse/.github/actions/[email protected]
with:
python-version: "3.11"
python-version: "3.12"
pipenv-install-options: "--skip-lock"
command: towncrier check --compare-with origin/main
fetch-depth: 0
2 changes: 1 addition & 1 deletion .github/workflows/sphinx-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4
- uses: fizyk/actions-reuse/.github/actions/[email protected]
with:
python-version: "3.11"
python-version: "3.12"
pipenv-install-options: "--skip-lock"
command: "sphinx-build -b html docs/source build/html"
- name: Deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
uses: fizyk/actions-reuse/.github/workflows/[email protected]
with:
pipenv-install-options: "--skip-lock"
python-versions: '["3.8", "3.9", "3.10", "3.11", "pypy-3.8"]'
python-versions: '["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"]'
secrets:
codecov_token: ${{ secrets.CODECOV_TOKEN }}
benchmark:
Expand Down
1 change: 1 addition & 0 deletions newsfragments/505.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add Support for Python 3.12
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down

0 comments on commit 575157a

Please sign in to comment.