Skip to content

Commit 2121715

Browse files
committed
fix syntax env-variable in pyproject.toml
1 parent 1c6fa29 commit 2121715

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ classifiers = [
3434
"Intended Audience :: Developers",
3535
"License :: OSI Approved :: MIT License",
3636
"Operating System :: POSIX :: Linux",
37+
"Operating System :: MacOS",
3738
"Operating System :: Microsoft :: Windows",
3839
"Programming Language :: Python :: 3.14",
3940
"Programming Language :: Python :: 3.13",
@@ -76,7 +77,7 @@ packaging = [
7677
"pyroma>=4.2",
7778
]
7879
pre-commit = [
79-
"pre-commit>=3.5", # 3.5 still supports python3.8
80+
"pre-commit>=3.5",
8081
"pre-commit-hooks>=5.0",
8182
"prek>=0.2.30",
8283
]
@@ -141,7 +142,7 @@ end_of_line = "lf"
141142

142143
[tool.mypy]
143144
# cfr https://mypy.readthedocs.io/en/stable/config_file.html#using-a-pyproject-toml-file
144-
cache_dir = "$MYPY_CONFIG_FILE_DIR/var/cache/mypy"
145+
cache_dir = "${MYPY_CONFIG_FILE_DIR}/var/cache/mypy"
145146
check_untyped_defs = true
146147
disallow_untyped_defs = true
147148
exclude = "^bin/"
@@ -185,7 +186,6 @@ pythonpath = ["tests"] # allows for importing helper-module
185186

186187

187188
[tool.ruff]
188-
# https://beta.ruff.rs/docs/configuration/
189189
# https://docs.astral.sh/ruff/configuration/#using-pyprojecttoml
190190
cache-dir = "var/cache/ruff" # relative to project_root
191191
line-length = 120
@@ -215,7 +215,7 @@ force-single-line = false
215215
from-first = false
216216
known-third-party = []
217217
known-first-party = ["autoread_dotenv"]
218-
known-local-folder = ["_helpers"]
218+
# known-local-folder = ["_helpers"]
219219

220220
[tool.ruff.lint.per-file-ignores]
221221
"docs/**" = [

0 commit comments

Comments
 (0)