Skip to content

Commit e4c2c71

Browse files
authoredDec 26, 2021
πŸ‘· [poetry] Remove upper version bounds from dependencies (#744)
* πŸ“¦ [poetry] Remove upper version bound for click * πŸ“¦ [poetry] Remove upper version bound for development dependencies * πŸ“¦ [poetry] Sort development dependencies
1 parent 5458769 commit e4c2c71

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed
 

β€Žpoetry.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpyproject.toml

+21-21
Original file line numberDiff line numberDiff line change
@@ -17,32 +17,32 @@ Changelog = "https://github.com/cjolowicz/cookiecutter-hypermodern-python-instan
1717

1818
[tool.poetry.dependencies]
1919
python = ">=3.7"
20-
click = "^8.0.1"
20+
click = ">=8.0.1"
2121

2222
[tool.poetry.dev-dependencies]
23-
pytest = "^6.2.5"
24-
coverage = {extras = ["toml"], version = "^6.2"}
25-
safety = "^1.10.3"
26-
mypy = "^0.930"
27-
typeguard = "^2.13.3"
28-
xdoctest = {extras = ["colors"], version = "^0.15.10"}
29-
sphinx = "^4.3.2"
30-
sphinx-autobuild = ">=2021.3.14"
31-
pre-commit = "^2.16.0"
32-
flake8 = "^4.0.1"
23+
Pygments = ">=2.10.0"
3324
black = ">=21.10b0"
34-
flake8-bandit = "^2.1.2"
25+
coverage = {extras = ["toml"], version = ">=6.2"}
26+
darglint = ">=1.8.1"
27+
flake8 = ">=4.0.1"
28+
flake8-bandit = ">=2.1.2"
3529
flake8-bugbear = ">=21.9.2"
36-
flake8-docstrings = "^1.6.0"
37-
flake8-rst-docstrings = "^0.2.5"
38-
pep8-naming = "^0.12.1"
39-
darglint = "^1.8.1"
40-
pre-commit-hooks = "^4.1.0"
41-
sphinx-click = "^3.0.2"
42-
Pygments = "^2.10.0"
43-
pyupgrade = "^2.29.1"
30+
flake8-docstrings = ">=1.6.0"
31+
flake8-rst-docstrings = ">=0.2.5"
4432
furo = ">=2021.11.12"
45-
isort = "^5.10.1"
33+
isort = ">=5.10.1"
34+
mypy = ">=0.930"
35+
pep8-naming = ">=0.12.1"
36+
pre-commit = ">=2.16.0"
37+
pre-commit-hooks = ">=4.1.0"
38+
pytest = ">=6.2.5"
39+
pyupgrade = ">=2.29.1"
40+
safety = ">=1.10.3"
41+
sphinx = ">=4.3.2"
42+
sphinx-autobuild = ">=2021.3.14"
43+
sphinx-click = ">=3.0.2"
44+
typeguard = ">=2.13.3"
45+
xdoctest = {extras = ["colors"], version = ">=0.15.10"}
4646

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

0 commit comments

Comments
 (0)
Please sign in to comment.