We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
uv run
--no-project
1 parent f6e99d2 commit 8bc9a65Copy full SHA for 8bc9a65
.gitignore
@@ -68,8 +68,10 @@ analyze.py
68
# Mypy cache
69
.mypy_cache/
70
71
-# pyenv local python version
+# pyenv and uv local python version
72
.python-version
73
+# we don't use uv's lock as we're not actually a project
74
+uv.lock
75
76
# deliberately local test configuration files
77
stdlib/@tests/stubtest_allowlists/*.local
pyproject.toml
@@ -1,3 +1,10 @@
1
+[project]
2
+# This section is needed to avoid writing --no-project everytime when using "uv run"
3
+# https://github.com/astral-sh/uv/issues/8666
4
+name = "typeshed"
5
+version = "0"
6
+requires-python = ">=3.9" # Minimum version to run tests, used by uv run
7
+
8
[tool.black]
9
line-length = 130
10
target-version = ["py310"]
0 commit comments