File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
repos :
2
2
- repo : https://github.com/tox-dev/pyproject-fmt
3
- rev : " 1.1 .0"
3
+ rev : " 1.2 .0"
4
4
hooks :
5
5
- id : pyproject-fmt
6
6
# Ruff must be run before Black, so Black can reformat fixes made by Ruff
7
7
- repo : https://github.com/astral-sh/ruff-pre-commit
8
- rev : v0.0.290
8
+ rev : v0.0.292
9
9
hooks :
10
10
- id : ruff
11
11
args : [--fix, --exit-non-zero-on-fix]
Original file line number Diff line number Diff line change
1
+ Added Python 3.12 support.
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ classifiers = [
26
26
" Programming Language :: Python :: 3.9" ,
27
27
" Programming Language :: Python :: 3.10" ,
28
28
" Programming Language :: Python :: 3.11" ,
29
+ " Programming Language :: Python :: 3.12" ,
29
30
" Typing :: Typed" ,
30
31
]
31
32
dynamic = [
@@ -80,7 +81,7 @@ packages = [
80
81
]
81
82
82
83
[tool .hatch .envs .default ]
83
- python = " 3.11 "
84
+ python = " 3.12 "
84
85
85
86
[tool .hatch .envs .lint ]
86
87
dependencies = [
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ build_cmd_with_source() {
38
38
build_cmd apt update --quiet=2
39
39
build_cmd apt install --yes --quiet=2 " ${lint_deps[@]} " " ${proj_deps[@]} " " ${proj_build_deps[@]} "
40
40
41
- build_cmd pip3.11 install git+https://github.com/pypa/hatch
41
+ build_cmd pip3.12 install git+https://github.com/pypa/hatch
42
42
43
43
for env in " ${hatchenvs[@]} " ; do
44
44
# this looks weird... but it causes Hatch to create the env,
You can’t perform that action at this time.
0 commit comments