Skip to content

Commit 4b54818

Browse files
authored
Allow typing-extensions version 4.x (ezyang#107)
Currently, `[tool.poetry.dependencies]` is configured to only allow `typing-extensions` with major version `3`. `typing-extensions` was bumped to version `4`; I believe the only significant change is dropping Python 3.5 support, which is already unsupported by other dependencies. Allow version 4 to be used to avoid unnecessary package conflicts when installed in existing virtualenvs.
1 parent 16fd53f commit 4b54818

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

poetry.lock

Lines changed: 6 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dataclasses = { version = "^0.8", python = "<3.7" }
2222
importlib-metadata = "^3"
2323
python = "^3.6"
2424
requests = "^2"
25-
typing-extensions = "^3"
25+
typing-extensions = ">=3 <5"
2626

2727
[tool.poetry.dev-dependencies]
2828
expecttest = "^0.1"

0 commit comments

Comments
 (0)