Skip to content

Commit

Permalink
πŸ‘· [poetry] Remove upper version bounds from dependencies (#744)
Browse files Browse the repository at this point in the history
* πŸ“¦ [poetry] Remove upper version bound for click

* πŸ“¦ [poetry] Remove upper version bound for development dependencies

* πŸ“¦ [poetry] Sort development dependencies
  • Loading branch information
cjolowicz committed Dec 26, 2021
1 parent 5458769 commit e4c2c71
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion poetry.lock

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

42 changes: 21 additions & 21 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,32 +17,32 @@ Changelog = "https://github.com/cjolowicz/cookiecutter-hypermodern-python-instan

[tool.poetry.dependencies]
python = ">=3.7"
click = "^8.0.1"
click = ">=8.0.1"

[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
coverage = {extras = ["toml"], version = "^6.2"}
safety = "^1.10.3"
mypy = "^0.930"
typeguard = "^2.13.3"
xdoctest = {extras = ["colors"], version = "^0.15.10"}
sphinx = "^4.3.2"
sphinx-autobuild = ">=2021.3.14"
pre-commit = "^2.16.0"
flake8 = "^4.0.1"
Pygments = ">=2.10.0"
black = ">=21.10b0"
flake8-bandit = "^2.1.2"
coverage = {extras = ["toml"], version = ">=6.2"}
darglint = ">=1.8.1"
flake8 = ">=4.0.1"
flake8-bandit = ">=2.1.2"
flake8-bugbear = ">=21.9.2"
flake8-docstrings = "^1.6.0"
flake8-rst-docstrings = "^0.2.5"
pep8-naming = "^0.12.1"
darglint = "^1.8.1"
pre-commit-hooks = "^4.1.0"
sphinx-click = "^3.0.2"
Pygments = "^2.10.0"
pyupgrade = "^2.29.1"
flake8-docstrings = ">=1.6.0"
flake8-rst-docstrings = ">=0.2.5"
furo = ">=2021.11.12"
isort = "^5.10.1"
isort = ">=5.10.1"
mypy = ">=0.930"
pep8-naming = ">=0.12.1"
pre-commit = ">=2.16.0"
pre-commit-hooks = ">=4.1.0"
pytest = ">=6.2.5"
pyupgrade = ">=2.29.1"
safety = ">=1.10.3"
sphinx = ">=4.3.2"
sphinx-autobuild = ">=2021.3.14"
sphinx-click = ">=3.0.2"
typeguard = ">=2.13.3"
xdoctest = {extras = ["colors"], version = ">=0.15.10"}

[tool.poetry.scripts]
cookiecutter-hypermodern-python-instance = "cookiecutter_hypermodern_python_instance.__main__:main"
Expand Down

0 comments on commit e4c2c71

Please sign in to comment.