Skip to content

Commit 895bb2a

Browse files
chore: bump deps
1 parent f200eea commit 895bb2a

File tree

4 files changed

+13
-201
lines changed

4 files changed

+13
-201
lines changed

pyproject.toml

Lines changed: 4 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
]
88
license = "Unlicense"
99

10-
requires-python = ">=3.11,<3.13"
10+
requires-python = ">=3.12,<3.13"
1111

1212
dependencies = []
1313

@@ -18,12 +18,9 @@ dev = [
1818
"icecream<3.0.0,>=2.1.3",
1919
"ipython<9.0.0,>=8.27.0",
2020
"mypy<2.0.0,>=1.14.1",
21-
"pyclean<4.0.0,>=3.0.0",
22-
"pytest-asyncio<1.0.0,>=0.25.2",
23-
"pytest-cov<7.0.0,>=6.0.0",
24-
"pytest<9.0.0,>=8.3.4",
21+
"pyclean>=3.1.0",
2522
"rich<14.0.0,>=13.8.1",
26-
"ruff>=0.9.5",
23+
"ruff>=0.13.0",
2724
]
2825
test = [
2926
"coverage<8.0.0,>=7.6.1",
@@ -54,7 +51,7 @@ DEP002 = [
5451
]
5552

5653
[tool.mypy]
57-
python_version = "3.11"
54+
python_version = "3.12"
5855
warn_return_any = true
5956
warn_unused_configs = true
6057
disallow_untyped_defs = true
@@ -90,94 +87,3 @@ exclude_lines = [
9087
"pass",
9188
"..."
9289
]
93-
94-
[tool.ruff]
95-
# Fix without reporting on leftover violations
96-
fix-only = true
97-
98-
# Enumerate all fixed violations
99-
show-fixes = true
100-
101-
# Indent width (default: 4)
102-
indent-width = 4
103-
104-
# Black (default: 88)
105-
line-length = 130
106-
107-
# Exclude a variety of commonly ignored directories.
108-
exclude = [
109-
".bzr",
110-
".direnv",
111-
"dist",
112-
".eggs",
113-
".git",
114-
".git-rewrite",
115-
".hg",
116-
".mypy_cache",
117-
".nox",
118-
".pants.d",
119-
"__pycache__",
120-
".pytype",
121-
".ruff_cache",
122-
".svn",
123-
".tox",
124-
".venv",
125-
"__pypackages__",
126-
"_build",
127-
"buck-out",
128-
"build",
129-
"dist",
130-
"node_modules",
131-
"venv",
132-
]
133-
134-
# Assume Python 3.11
135-
target-version = "py311"
136-
137-
[tool.ruff.format]
138-
# Use spaces instead of tabs
139-
indent-style = "space"
140-
141-
# Use `\n` line endings for all files
142-
line-ending = "lf"
143-
144-
# Set quote style for strings
145-
quote-style = "preserve"
146-
147-
[tool.ruff.lint]
148-
select = [
149-
# pycodestyle
150-
"E",
151-
# Pyflakes
152-
"F",
153-
# pyupgrade
154-
"UP",
155-
# flake8-bugbear
156-
"B",
157-
# flake8-simplify
158-
"SIM",
159-
# isort
160-
"I",
161-
]
162-
ignore = ["D203", "E203", "E251", "E266", "E401", "E402", "E501", "F401", "F403", "F841"]
163-
164-
# Allow unused variables when underscore-prefixed.
165-
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
166-
167-
# Allow autofix for all enabled rules (when `--fix`) is provided.
168-
fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TID", "TRY", "UP", "YTT"]
169-
170-
# unfixable = []
171-
172-
[tool.ruff.lint.isort]
173-
combine-as-imports = true
174-
from-first = false
175-
no-sections = true
176-
order-by-type = true
177-
178-
[tool.ruff.lint.flake8-quotes]
179-
docstring-quotes = "double"
180-
181-
[tool.ruff.lint.mccabe]
182-
# Unlike Flake8, default to a complexity level of 10.
183-
max-complexity = 10
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nodejs 23.2.0
2-
process-compose 1.46.0
3-
python 3.11.13
4-
uv 0.7.9
1+
nodejs 24.2.0
2+
process-compose 1.34.0
3+
python 3.12.11
4+
uv 0.7.18

{{cookiecutter.project_slug}}/docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ target "build" {
2727
// Platform will be set from GitHub Actions
2828
// cache-from and cache-to will also be set from GitHub Actions
2929
args = {
30-
PYTHON_VERSION = "3.12.10"
30+
PYTHON_VERSION = "3.12.11"
3131
// Additional build args can be defined here
3232
}
3333
// Output image will be pushed if push=true is set in GitHub Actions

{{cookiecutter.project_slug}}/pyproject.toml

Lines changed: 4 additions & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = [
77
]
88
license = "{{ cookiecutter.open_source_license }}"
99

10-
requires-python = ">=3.11,<3.13"
10+
requires-python = ">=3.12,<3.13"
1111

1212
dependencies = []
1313

@@ -18,12 +18,9 @@ dev = [
1818
"icecream<3.0.0,>=2.1.3",
1919
"ipython<9.0.0,>=8.27.0",
2020
"mypy<2.0.0,>=1.14.1",
21-
"pyclean<4.0.0,>=3.0.0",
22-
"pytest-asyncio<1.0.0,>=0.25.2",
23-
"pytest-cov<7.0.0,>=6.0.0",
24-
"pytest<9.0.0,>=8.3.4",
21+
"pyclean>=3.1.0",
2522
"rich<14.0.0,>=13.8.1",
26-
"ruff>=0.9.5",
23+
"ruff>=0.13.0",
2724
]
2825
test = [
2926
"coverage<8.0.0,>=7.6.1",
@@ -59,7 +56,7 @@ DEP002 = [
5956
]
6057

6158
[tool.mypy]
62-
python_version = "3.11"
59+
python_version = "3.12"
6360
warn_return_any = true
6461
warn_unused_configs = true
6562
disallow_untyped_defs = true
@@ -95,94 +92,3 @@ exclude_lines = [
9592
"pass",
9693
"..."
9794
]
98-
99-
[tool.ruff]
100-
# Fix without reporting on leftover violations
101-
fix-only = true
102-
103-
# Enumerate all fixed violations
104-
show-fixes = true
105-
106-
# Indent width (default: 4)
107-
indent-width = 4
108-
109-
# Black (default: 88)
110-
line-length = 130
111-
112-
# Exclude a variety of commonly ignored directories.
113-
exclude = [
114-
".bzr",
115-
".direnv",
116-
"dist",
117-
".eggs",
118-
".git",
119-
".git-rewrite",
120-
".hg",
121-
".mypy_cache",
122-
".nox",
123-
".pants.d",
124-
"__pycache__",
125-
".pytype",
126-
".ruff_cache",
127-
".svn",
128-
".tox",
129-
".venv",
130-
"__pypackages__",
131-
"_build",
132-
"buck-out",
133-
"build",
134-
"dist",
135-
"node_modules",
136-
"venv",
137-
]
138-
139-
# Assume Python 3.11
140-
target-version = "py311"
141-
142-
[tool.ruff.format]
143-
# Use spaces instead of tabs
144-
indent-style = "space"
145-
146-
# Use `\n` line endings for all files
147-
line-ending = "lf"
148-
149-
# Set quote style for strings
150-
quote-style = "preserve"
151-
152-
[tool.ruff.lint]
153-
select = [
154-
# pycodestyle
155-
"E",
156-
# Pyflakes
157-
"F",
158-
# pyupgrade
159-
"UP",
160-
# flake8-bugbear
161-
"B",
162-
# flake8-simplify
163-
"SIM",
164-
# isort
165-
"I",
166-
]
167-
ignore = ["D203", "E203", "E251", "E266", "E401", "E402", "E501", "F401", "F403", "F841"]
168-
169-
# Allow unused variables when underscore-prefixed.
170-
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
171-
172-
# Allow autofix for all enabled rules (when `--fix`) is provided.
173-
fixable = ["A", "B", "C", "D", "E", "F", "G", "I", "N", "Q", "S", "T", "W", "ANN", "ARG", "BLE", "COM", "DJ", "DTZ", "EM", "ERA", "EXE", "FBT", "ICN", "INP", "ISC", "NPY", "PD", "PGH", "PIE", "PL", "PT", "PTH", "PYI", "RET", "RSE", "RUF", "SIM", "SLF", "TID", "TRY", "UP", "YTT"]
174-
175-
# unfixable = []
176-
177-
[tool.ruff.lint.isort]
178-
combine-as-imports = true
179-
from-first = false
180-
no-sections = true
181-
order-by-type = true
182-
183-
[tool.ruff.lint.flake8-quotes]
184-
docstring-quotes = "double"
185-
186-
[tool.ruff.lint.mccabe]
187-
# Unlike Flake8, default to a complexity level of 10.
188-
max-complexity = 10

0 commit comments

Comments
 (0)