diff --git a/HISTORY.rst b/HISTORY.rst index bf2411a1..e20be42d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -15,6 +15,7 @@ History * Fix propagating the `detailed_validation` flag to mapping and counter structuring generators. * Fix ``typing.Set`` applying too broadly when used with the ``GenConverter.unstruct_collection_overrides`` parameter on Python versions below 3.9. Switch to ``typing.AbstractSet`` on those versions to restore the old behavior. (`#264 `_) +* Uncap the required Python version, to avoid problems detailed in https://iscinumpy.dev/post/bound-version-constraints/#pinning-the-python-version-is-special (`#275 `_) 22.1.0 (2022-04-03) ------------------- diff --git a/pyproject.toml b/pyproject.toml index c6f78366..e62303ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ packages = [ readme = "README.rst" [tool.poetry.dependencies] -python = "^3.7" +python = ">= 3.7" attrs = ">= 20" typing_extensions = { version = "*", python = "< 3.8" } exceptiongroup = { version = "*", python = "< 3.11" }