Skip to content

Commit

Permalink
Allow any python in the 3.x series >=3.7
Browse files Browse the repository at this point in the history
Before converting from setup.py, this upper bound didn't exist.

There's no reason to cap at 3.10. This breaks installations on other poetry projects defined with Python=^3.7 and would force updating this file for every new python version.
  • Loading branch information
mmv authored and dbrattli committed Jul 16, 2022
1 parent 4d351c9 commit 7187453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ packages = [
]

[tool.poetry.dependencies]
python = ">= 3.7, < 3.11"
python = ">= 3.7, < 4.0"
typing-extensions = "^4.1.1"

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit 7187453

Please sign in to comment.