-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Keep Python 2 compatibility and allow escape prepare
Signed-off-by: Bernát Gábor <[email protected]>
- Loading branch information
1 parent
ba388d9
commit 95fb06c
Showing
10 changed files
with
37 additions
and
26 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 |
---|---|---|
|
@@ -13,25 +13,18 @@ urls.Homepage = "http://pyproject_api.readthedocs.org" | |
urls.Source = "https://github.com/tox-dev/pyproject-api" | ||
urls.Tracker = "https://github.com/tox-dev/pyproject-api/issues" | ||
authors = [{ name = "Bernát Gábor", email = "[email protected]" }] | ||
maintainers = [ | ||
{ name = "Bernát Gábor", email = "[email protected]" }, | ||
] | ||
maintainers = [{ name = "Bernát Gábor", email = "[email protected]" }] | ||
requires-python = ">=3.7" | ||
dependencies = [ | ||
"packaging>=21.3", 'tomli>=2.0.1; python_version < "3.11"', | ||
] | ||
optional-dependencies.docs = [ | ||
"furo>=2022.9.29", | ||
"sphinx>=5.3", | ||
"sphinx-autodoc-typehints>=1.19.5", | ||
] | ||
dependencies = ["packaging>=21.3", 'tomli>=2.0.1; python_version < "3.11"'] | ||
optional-dependencies.docs = ["furo>=2022.9.29", "sphinx>=5.3", "sphinx-autodoc-typehints>=1.19.5"] | ||
optional-dependencies.testing = [ | ||
"covdefaults>=2.2.2", | ||
"pytest>=7.2", | ||
"pytest-cov>=4", | ||
"pytest-mock>=3.10", | ||
'importlib-metadata>=5.1; python_version < "3.8"', | ||
"wheel>=0.38.4", | ||
"pytest>=7.2", | ||
"pytest-cov>=4", | ||
"pytest-mock>=3.10", | ||
'importlib-metadata>=5.1; python_version < "3.8"', | ||
"wheel>=0.38.4", | ||
"virtualenv>=20.17", | ||
] | ||
dynamic = ["version"] | ||
classifiers = [ | ||
|
@@ -86,6 +79,7 @@ line_length = 120 | |
python_version = "3.11" | ||
show_error_codes = true | ||
strict = true | ||
overrides = [{ module = ["virtualenv.*"], ignore_missing_imports = true }] | ||
|
||
[tool.pep8] | ||
max-line-length = "120" | ||
|
@@ -96,5 +90,3 @@ max-line-length = 120 | |
unused-arguments-ignore-abstract-functions = true | ||
noqa-require-code = true | ||
dictionaries = ["en_US", "python", "technical", "django"] | ||
ignore = [ | ||
] |
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
Empty file.
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