File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
- Upgrade CI to use ubuntu-24.04
13
13
- Upgrade CI actions to use latest version
14
14
15
+ ## Fixed
16
+
17
+ - Fixed ` pyproject.toml ` versions used in pytest, black, ruff and pyright
18
+
15
19
## [ 1.0.2] - 2024-06-10
16
20
17
21
### Changed
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ features = ["dev"]
60
60
features = [" scripts" , " test" ]
61
61
62
62
[[tool .hatch .envs .test .matrix ]]
63
- python = [" 3.10 " , " 3.11 " ]
63
+ python = [" 3.11 " , " 3.12 " ]
64
64
65
65
[tool .hatch .envs .test .scripts ]
66
66
run = " inv test --args '{args}'"
@@ -91,10 +91,10 @@ all = "inv checkall --args '{args}'"
91
91
92
92
[tool .black ]
93
93
line-length = 88
94
- target-version = [' py310 ' ]
94
+ target-version = [' py311 ' ]
95
95
96
96
[tool .ruff ]
97
- target-version = " py311 "
97
+ target-version = " py312 "
98
98
line-length = 88
99
99
src = [" src" ]
100
100
@@ -217,6 +217,6 @@ exclude_lines = [
217
217
include = [" src" , " tests" , " tasks.py" ]
218
218
exclude = [" .env/**" , " .venv/**" ]
219
219
extraPaths = [" src" ]
220
- pythonVersion = " 3.11 "
220
+ pythonVersion = " 3.12 "
221
221
typeCheckingMode =" strict"
222
222
disableBytesTypePromotions = true
You can’t perform that action at this time.
0 commit comments