diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index ee6f5af..0348eaf 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,10 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +### Changed + +- [Pycln is no longer tightly pinning its dependencies by @hadialqattan](https://github.com/hadialqattan/pycln/pull/213) + ## [2.1.7] - 2023-07-27 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 9adc143..1f47dd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,12 +25,12 @@ pycln = "pycln.cli:app" [tool.poetry.dependencies] python = ">=3.6.2, <4" -typer = ">=0.4.1,<0.10.0" +typer = ">=0.4.1" dataclasses = {version = "^0.7", python = "3.6"} -pyyaml = ">=5.3.1,<7.0.0" -pathspec = ">=0.9.0,<0.12.0" -tomlkit = "^0.11.1" -libcst = [{version = ">=0.3.10,<1.1.0", python = ">=3.7"}, {version = ">=0.3.10,<0.4.0", python = "<3.7"}] +pyyaml = ">=5.3.1" +pathspec = ">=0.9.0" +tomlkit = ">=0.11.1" +libcst = [{version = ">=0.3.10", python = ">=3.7"}, {version = ">=0.3.10,<0.4.0", python = "<3.7"}] [tool.poetry.dev-dependencies] requests = "^2.24.0"