Skip to content

Commit

Permalink
Allow typing-extensions version 4.x (#107)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
amartani committed Aug 2, 2022
1 parent 16fd53f commit 4b54818
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -22,7 +22,7 @@ dataclasses = { version = "^0.8", python = "<3.7" }
importlib-metadata = "^3"
python = "^3.6"
requests = "^2"
typing-extensions = "^3"
typing-extensions = ">=3 <5"

[tool.poetry.dev-dependencies]
expecttest = "^0.1"
Expand Down

0 comments on commit 4b54818

Please sign in to comment.