generated from bentheiii/template-python-poetry
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ben Avrahami
committed
Apr 8, 2024
1 parent
6bb7bf4
commit 02d291f
Showing
11 changed files
with
259 additions
and
104 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "1.4.0" | ||
__version__ = "1.5.0" |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "envolved" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
description = "" | ||
authors = ["ben avrahami <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -12,11 +12,8 @@ packages = [ | |
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
typing-extensions = [ | ||
{version="<4.8.0", python=">=3.7, <3.8"}, | ||
{version="*", python=">=3.8"}, | ||
] | ||
python = "^3.8" | ||
typing-extensions = "*" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "*" | ||
|
@@ -39,7 +36,7 @@ build-backend = "poetry.masonry.api" | |
|
||
|
||
[tool.ruff] | ||
target-version = "py37" | ||
target-version = "py38" | ||
line-length = 120 | ||
output-format = "full" | ||
[tool.ruff.lint] | ||
|
@@ -108,3 +105,7 @@ keep-runtime-typing = true | |
"PTH", # use pathlib | ||
"PERF", # performance anti-patterns | ||
] | ||
|
||
"type_checking/**" = [ | ||
"INP001", # implicit namespace packages | ||
] |
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 @@ | ||
python -m mypy --show-error-codes --check-untyped-defs type_checking |
Oops, something went wrong.