Skip to content

Commit 8b9bf3f

Browse files
committed
✨ Python 3.12
1 parent da68c05 commit 8b9bf3f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

cookiecutter.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"email": "[email protected]",
1010
"github_username": "juftin",
1111
"default_python_version": [
12+
"3.12",
1213
"3.11",
1314
"3.10",
1415
"3.9",

{{cookiecutter.repo_name}}/.github/workflows/tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
fail-fast: true
2424
matrix:
2525
include:
26+
- { name: Python 3.11, python: "3.12" }
2627
- { name: Python 3.11, python: "3.11" }
2728
- { name: Python 3.10, python: "3.10" }
2829
- { name: Python 3.9, python: "3.9" }

{{cookiecutter.repo_name}}/pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ classifiers = [
1414
"Programming Language :: Python :: 3.9",
1515
"Programming Language :: Python :: 3.10",
1616
"Programming Language :: Python :: 3.11",
17+
"Programming Language :: Python :: 3.12",
1718
"Programming Language :: Python :: Implementation :: CPython",
1819
"Programming Language :: Python :: Implementation :: PyPy"
1920
]
@@ -62,7 +63,7 @@ parallel = true
6263
source_pkgs = ["{{ cookiecutter.project_slug }}", "tests"]
6364

6465
[[tool.hatch.envs.all.matrix]]
65-
python = ["3.8", "3.9", "3.10", "3.11"]
66+
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
6667

6768
[tool.hatch.envs.default]
6869
dependencies = [
@@ -116,8 +117,8 @@ release = [
116117
"npm install --prefix .github/semantic_release/",
117118
"npx --prefix .github/semantic_release/ semantic-release {args:}"
118119
]
119-
reqs = "pip-compile {args:} --generate-hashes --output-file requirements.txt --all-extras"
120-
reqs-update = "pip-compile {args:} --upgrade --generate-hashes --output-file requirements.txt --all-extras"
120+
reqs = "pip-compile {args:} --generate-hashes --output-file requirements.txt"
121+
reqs-update = "pip-compile {args:} --upgrade --generate-hashes --output-file requirements.txt"
121122

122123
[tool.hatch.envs.lint]
123124
dependencies = [

0 commit comments

Comments
 (0)