diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 96674b8..17917d0 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v4 - uses: fizyk/actions-reuse/.github/actions/pipenv@v2.4.4 with: - python-version: "3.11" + python-version: "3.12" command: tbump --dry-run --only-patch $(pipenv run tbump current-version)"-x" towncrier: runs-on: ubuntu-latest @@ -20,6 +20,6 @@ jobs: steps: - uses: fizyk/actions-reuse/.github/actions/pipenv@v2.4.4 with: - python-version: "3.11" + python-version: "3.12" command: towncrier check --compare-with origin/main fetch-depth: 0 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 774cbc4..56de601 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: true 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.9] env: OS: ubuntu-latest PYTHON: ${{ matrix.python-version }} diff --git a/newsfragments/469.feature.rst b/newsfragments/469.feature.rst new file mode 100644 index 0000000..8c03bd3 --- /dev/null +++ b/newsfragments/469.feature.rst @@ -0,0 +1 @@ +Support Python 3.12 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 6ffca91..a213cc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,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", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Libraries :: Python Modules",