Skip to content

Commit

Permalink
build: test and advertise Python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
noirbizarre committed Oct 27, 2023
1 parent 23f9366 commit 40f30b1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- macos-latest
- ubuntu-latest
- windows-latest
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
# HACK https://github.com/actions/cache/issues/315
Expand Down
30 changes: 15 additions & 15 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "copier"
# This version is a placeholder autoupdated by poetry-dynamic-versioning
version = "0.0.0"
version = "9.0.0.post4.dev0+edc31f8"
description = "A library for rendering project templates."
license = "MIT"
classifiers = [
Expand All @@ -13,6 +13,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
authors = ["Ben Felder <[email protected]>"]
homepage = "https://github.com/copier-org/copier"
Expand Down Expand Up @@ -104,7 +105,7 @@ cmd = "mypy ."
help = "run the type (mypy) checker on the codebase"

[tool.poetry-dynamic-versioning]
enable = true
enable = false
style = "pep440"
vcs = "git"

Expand Down
2 changes: 1 addition & 1 deletion tests/test_updatediff.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def test_commit_hooks_respected(tmp_path_factory: pytest.TempPathFactory) -> Non
hooks:
- id: prettier
- repo: https://github.com/commitizen-tools/commitizen
rev: v2.42.1
rev: v3.12.0
hooks:
- id: commitizen
- repo: local
Expand Down

0 comments on commit 40f30b1

Please sign in to comment.