-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop 3.8 and uv sync now works in verbose mode same way as pip
This means that if you pass one -v to tox we show its output, if you pass two of it we make uv sync verbose. Signed-off-by: Bernát Gábor <[email protected]>
- Loading branch information
1 parent
fb6cec1
commit 3519f88
Showing
8 changed files
with
28 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,15 +19,14 @@ license = "MIT" | |
maintainers = [ | ||
{ name = "Bernát Gábor", email = "[email protected]" }, | ||
] | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.9" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
|
@@ -41,11 +40,10 @@ dynamic = [ | |
"version", | ||
] | ||
dependencies = [ | ||
"importlib-resources>=6.4.5; python_version<'3.9'", | ||
"packaging>=24.1", | ||
"tox<5,>=4.20", | ||
"tox<5,>=4.21.2", | ||
"typing-extensions>=4.12.2; python_version<'3.10'", | ||
"uv<1,>=0.4.12", | ||
"uv<1,>=0.4.18", | ||
] | ||
optional-dependencies.testing = [ | ||
"covdefaults>=2.3", | ||
|
@@ -74,7 +72,6 @@ version.source = "vcs" | |
line-length = 120 | ||
|
||
[tool.ruff] | ||
target-version = "py38" | ||
line-length = 120 | ||
format.preview = true | ||
format.docstring-code-line-length = 100 | ||
|
@@ -155,3 +152,6 @@ overrides = [ | |
"uv.*", | ||
], ignore_missing_imports = true }, | ||
] | ||
|
||
[tool.uv] | ||
cache-keys = [ { file = "pyproject.toml" }, { git = true } ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters