Skip to content

Commit

Permalink
Change: Pycln is no longer tightly pinning its dependencies (#213)
Browse files Browse the repository at this point in the history
* Remove: dependencies upper-bound artificial locks

* Add: changelog
  • Loading branch information
hadialqattan committed Jul 31, 2023
1 parent e125817 commit 4ba41dc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 4ba41dc

Please sign in to comment.