From 6dc4784342780c585c4e257a223f32552c023c6e Mon Sep 17 00:00:00 2001 From: Simon Gerber Date: Wed, 25 May 2022 09:57:02 +0200 Subject: [PATCH] Remove all version range specifications for dependencies in `pyproject.toml` This way we should get "real" Renovate PRs for dependency updates. --- poetry.lock | 2 +- pyproject.toml | 34 +++++++++++++++++----------------- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/poetry.lock b/poetry.lock index 2d9d2247..558eb970 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1394,7 +1394,7 @@ testing = ["pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytest- [metadata] lock-version = "1.1" python-versions = ">=3.8, <3.11" -content-hash = "4323265c3272b6287752309687265c23cfe2dc33f410ccbf8c797a89027c0b20" +content-hash = "8468326d5b4f0a0f016274275380e303fb8c9427d2ad778029dc97f746acc4b6" [metadata.files] addict = [ diff --git a/pyproject.toml b/pyproject.toml index c9337d46..838b831c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,33 +19,33 @@ include = [ [tool.poetry.dependencies] python = ">=3.8, <3.11" kapitan = "0.30.0" -click = "^8.1.2" -cookiecutter = "^1.7.3" +click = "8.1.3" +cookiecutter = "1.7.3" # Kapitan requires exactly 3.1.24 gitpython = "3.1.24" # Kapitan requires exactly 2.26.0 requests = "2.26.0" -url-normalize = "^1.4.3" -python-dotenv = "^0.20.0" -importlib-metadata = "^4.11.3" -pyxdg = "^0.27" -cruft = "^2.10.2" +url-normalize = "1.4.3" +python-dotenv = "0.20.0" +importlib-metadata = "4.11.4" +pyxdg = "0.27" +cruft = "2.10.2" # Kapitan requires exactly 3.1.1 oauthlib = "3.1.1" # Kapitan requires exactly 2.1.0 pyjwt = "2.1.0" [tool.poetry.dev-dependencies] -tox = "^3.25.0" -autopep8 = "^1.6.0" -pytest = "^7.1.1" -pytest-xdist = "^2.5.0" -pytest-benchmark = "^3.4.1" -responses = "^0.20.0" -black = "^22.3.0" -pyfakefs = "^4.5.6" -pytest-cov = "^3.0.0" -pylint = "^2.13.5" +tox = "3.25.0" +autopep8 = "1.6.0" +pytest = "7.1.2" +pytest-xdist = "2.5.0" +pytest-benchmark = "3.4.1" +responses = "0.20.0" +black = "22.3.0" +pyfakefs = "4.5.6" +pytest-cov = "3.0.0" +pylint = "2.13.9" [tool.poetry.scripts] commodore = 'commodore.cli:main'