Skip to content

Commit

Permalink
Add Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jodal committed Oct 29, 2023
1 parent c9f8a8d commit 1cfff1e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
7 changes: 5 additions & 2 deletions {{cookiecutter.repo_name}}/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,15 @@ jobs:
- name: "Test: Python 3.11"
python: "3.11"
tox: py311
- name: "Test: Python 3.12"
python: "3.12"
tox: py312
coverage: true
- name: "Lint: check-manifest"
python: "3.11"
python: "3.12"
tox: check-manifest
- name: "Lint: flake8"
python: "3.11"
python: "3.12"
tox: flake8

name: ${{ matrix.name }}
Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.repo_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools >= 30.3.0", "wheel"]


[tool.black]
target-version = ["py39", "py310", "py311"]
target-version = ["py39", "py310", "py311", "py312"]
line-length = 80


Expand Down
1 change: 1 addition & 0 deletions {{cookiecutter.repo_name}}/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Multimedia :: Sound/Audio :: Players


Expand Down
2 changes: 1 addition & 1 deletion {{cookiecutter.repo_name}}/tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py39, py310, py311, check-manifest, flake8
envlist = py39, py310, py311, py312, check-manifest, flake8

[testenv]
sitepackages = true
Expand Down

0 comments on commit 1cfff1e

Please sign in to comment.