-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #164 from cdce8p/dev
Release v0.4.0
- Loading branch information
Showing
19 changed files
with
374 additions
and
381 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
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
[build-system] | ||
requires = ["setuptools~=60.5", "wheel~=0.37.1"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.isort] | ||
# https://pycqa.github.io/isort/docs/configuration/options.html | ||
multi_line_output = 4 | ||
line_length = 72 | ||
combine_as_imports = true | ||
force_sort_within_sections = true | ||
known_first_party = [ | ||
"python_typing_update", | ||
"tests", | ||
] | ||
forced_separate = ["tests"] | ||
|
||
[tool.pytest.ini_options] | ||
testpaths = ["tests"] | ||
norecursedirs = ["fixtures"] | ||
console_output_style = "count" | ||
log_level = "NOTSET" | ||
asyncio_mode = "auto" # https://github.com/pytest-dev/pytest-asyncio#modes | ||
|
||
[tool.mypy] | ||
# https://mypy.readthedocs.io/en/stable/config_file.html | ||
python_version = 3.8 | ||
show_error_codes = true | ||
ignore_missing_imports = true | ||
strict = true | ||
follow_imports = "normal" | ||
exclude = "tests/fixtures/.+\\.py" | ||
# Untyped definitions and calls | ||
disallow_untyped_calls = true | ||
disallow_untyped_defs = true | ||
disallow_incomplete_defs = true | ||
check_untyped_defs = true | ||
# None and optional handeling | ||
no_implicit_optional = true | ||
strict_optional = true | ||
# Configure warnings | ||
warn_redundant_casts = true | ||
warn_unused_ignores = true | ||
warn_unused_configs = true | ||
# Misc | ||
implicit_reexport = false | ||
strict_equality = true | ||
enable_error_code = ["ignore-without-code"] | ||
# TODO | ||
allow_any_generics = true | ||
|
||
# [[tool.mypy.overrides]] | ||
# module = "tests.*" | ||
# # Untyped definitions and calls | ||
# disallow_untyped_calls = false | ||
# disallow_untyped_defs = false | ||
# disallow_incomplete_defs = false |
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
Oops, something went wrong.