-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version, add internal mirror of
argparse
This should fix problems with Python 3.11.9
- Loading branch information
Showing
12 changed files
with
2,777 additions
and
40 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ name = "tyro" | |
authors = [ | ||
{name = "brentyi", email = "[email protected]"}, | ||
] | ||
version = "0.8.2" # TODO: currently needs to be synchronized manually with __init__.py. | ||
version = "0.8.3" # TODO: currently needs to be synchronized manually with __init__.py. | ||
description = "Strongly typed, zero-effort CLI interfaces" | ||
readme = "README.md" | ||
license = { text="MIT" } | ||
|
@@ -67,7 +67,10 @@ profile = "black" | |
python_version = "3.12" | ||
ignore_missing_imports = true | ||
warn_unused_configs = true | ||
exclude = "^tests/test_py311_generated/.*" | ||
exclude = ["^tests/test_py311_generated/.*", "_argparse\\.py"] | ||
|
||
[tool.coverage.run] | ||
omit = ["**/_argparse.py"] | ||
|
||
[tool.coverage.report] | ||
exclude_lines = [ | ||
|
@@ -127,3 +130,8 @@ lint.ignore = [ | |
"PLW0603", # Global statement updates are discouraged. | ||
"PLW2901" # For loop variable overwritten. | ||
] | ||
extend-exclude = ["**/_argparse.py"] | ||
|
||
[tool.pyright] | ||
pythonVersion = "3.12" | ||
ignore = ["**/_argparse.py"] |
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
Oops, something went wrong.