-
Notifications
You must be signed in to change notification settings - Fork 8
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 #145 from ariebovenberg/typeddict-from-typing-exte…
…nsions Fix bug with TypedDict for typing_extensions specifically
- Loading branch information
Showing
9 changed files
with
122 additions
and
193 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
Large diffs are not rendered by default.
Oops, something went wrong.
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 = "slotscheck" | ||
version = "0.16.4" | ||
version = "0.16.5" | ||
description = "Ensure your __slots__ are working properly." | ||
authors = ["Arie Bovenberg <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -34,12 +34,11 @@ flake8 = "^5.0.4" | |
isort = "^5.11.5" | ||
mypy = "^1.0" | ||
pytest = "^7.2.1" | ||
tox = "^3.27.1" | ||
black = "^23.1" | ||
pytest-cov = "^4.0.0" | ||
pytest-mock = "^3.6.1" | ||
types-dataclasses = "^0.6.6" | ||
# Not actually used, but a rare library whose __init__ is an extension. | ||
typing_extensions = ">=4.1,<5" | ||
# Only actually needed as an example library whose __init__ is an extension. | ||
pydantic = "1.9.2" | ||
|
||
[tool.poetry.scripts] | ||
|
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