-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lock transitive python dependencies with pip-tools
After yet another breaking package update (docker/docker-py#3257), its high time we permanently pin all development packages *and their dependencies* to a known.-good version. pip-tools lets us do that without losing the simple requirements.txt file that allows easy installation, so lets use that.
- Loading branch information
Showing
6 changed files
with
413 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
{ | ||
"extends": [ | ||
"github>maxhoesel-ansible/.github:renovate-config" | ||
] | ||
], | ||
"pip-compile": { | ||
"fileMatch": ["^requirements\\.txt$"] | ||
}, | ||
"pip_requirements": { | ||
"enabled": false | ||
}, | ||
"pip_setup": { | ||
"enabled": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# This file is only a template! | ||
# Use requirements.txt generated by pip-compile to install dependencies | ||
|
||
# Requirements for developing this collection | ||
# Includes utilities, CLI helpers and so on | ||
|
||
# Linting & Formatting | ||
ansible-lint==24.5.0 | ||
pylint==3.2.1 | ||
autopep8==2.1.0 | ||
pre-commit==3.7.1 | ||
|
||
# Testing libraries | ||
pytest==8.2.0 | ||
pytest-virtualenv==1.7.0 | ||
docker==7.1.0 | ||
# Dependencies for executing the role scenarios. | ||
molecule==6.0.2 | ||
molecule-plugins[docker]==23.4.1 | ||
|
||
# Utility packages used in scripts | ||
pyyaml==6.0.1 | ||
packaging==24.0 | ||
# Generating requirements and syncing venv | ||
pip-tools==7.4.1 | ||
|
||
# Also include a version of ansible-core for IDE hints | ||
# and as the default version used in tests. | ||
# It is also needed for docs generation | ||
ansible-core==2.16.6 | ||
|
||
# Docs | ||
antsibull-docs==2.11.0 | ||
ansible-pygments==0.1.1 | ||
sphinx==7.3.7 | ||
sphinx-ansible-theme==0.10.3 |
Oops, something went wrong.