Skip to content

Commit

Permalink
Fix mis-placed dep.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Dec 23, 2024
1 parent eae9450 commit a298d19
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ dependencies = [
"httpx",
"packaging",
"tomlkit; python_version < '3.11'",
"tqdm"
"tqdm",
"typing-extensions",
]
dynamic = ["version"]

Expand All @@ -42,7 +43,6 @@ dev = [
"ruff",
"types-appdirs",
"types-tqdm",
"typing-extensions",
]

[[tool.mypy.overrides]]
Expand All @@ -67,7 +67,7 @@ import sys
import colors
# The MyPy cache can get corrupted by swithing Pythons with `uv ... --python ...` and re-building
# The MyPy cache can get corrupted by swithing Pythons with `uv ... --python ...' and re-building
# the .venv is cheap; so we clean these as a more restricted form than `git clean -fdx`
for cache_dir in '.mypy_cache', '.venv':
if os.path.exists(cache_dir):
Expand Down
4 changes: 2 additions & 2 deletions python/uv.lock

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

0 comments on commit a298d19

Please sign in to comment.