Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
Also includes fix to prevent update of dependencies when linting.
  • Loading branch information
ssbarnea committed Dec 12, 2023
1 parent 646617b commit df07d89
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 11 deletions.
14 changes: 10 additions & 4 deletions .config/lock-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,21 @@
#
# pip-compile --no-annotate --output-file=.config/lock-requirements.txt --strip-extras pyproject.toml
#
aiohttp==3.9.1
aiosignal==1.3.1
ansible-builder==3.0.0
ansible-compat==4.1.10
ansible-core==2.16.1
ansible-core==2.16.2
ansible-creator==0.0.1a4
ansible-development-environment==0.3.0
ansible-lint==6.22.1
ansible-navigator==3.5.0
ansible-runner==2.3.4
ansible-sign==0.1.1
async-timeout==4.0.3
attrs==23.1.0
bindep==2.11.0
black==23.11.0
black==23.12.0
bracex==2.4
cachetools==5.3.2
certifi==2023.11.17
Expand All @@ -26,13 +29,14 @@ click==8.1.7
click-help-colors==0.9.4
colorama==0.4.6
cryptography==41.0.7
distlib==0.3.7
distlib==0.3.8
distro==1.8.0
docutils==0.20.1
enrich==1.2.7
exceptiongroup==1.2.0
execnet==2.0.2
filelock==3.13.1
frozenlist==1.4.0
idna==3.6
iniconfig==2.0.0
jinja2==3.1.2
Expand All @@ -43,6 +47,7 @@ markdown-it-py==3.0.0
markupsafe==2.1.3
mdurl==0.1.2
molecule==6.0.2
multidict==6.0.4
mypy-extensions==1.0.0
onigurumacffi==1.3.0
packaging==23.2
Expand All @@ -60,7 +65,7 @@ pytest==7.4.3
pytest-ansible==4.1.1
pytest-xdist==3.5.0
python-daemon==3.0.1
python-gnupg==0.5.1
python-gnupg==0.5.2
pyyaml==6.0.1
referencing==0.32.0
requests==2.31.0
Expand All @@ -82,6 +87,7 @@ urllib3==2.1.0
virtualenv==20.25.0
wcmatch==8.5
yamllint==1.33.0
yarl==1.9.4

# The following packages are considered to be unsafe in a requirements file:
# setuptools
16 changes: 11 additions & 5 deletions .config/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,23 @@
#
# pip-compile --all-extras --no-annotate --output-file=.config/requirements.txt --strip-extras pyproject.toml
#
aiohttp==3.9.1
aiosignal==1.3.1
ansible-builder==3.0.0
ansible-compat==4.1.10
ansible-core==2.16.1
ansible-core==2.16.2
ansible-creator==0.0.1a4
ansible-development-environment==0.3.0
ansible-lint==6.22.1
ansible-navigator==3.5.0
ansible-runner==2.3.4
ansible-sign==0.1.1
async-timeout==4.0.3
attrs==23.1.0
babel==2.13.1
babel==2.14.0
beautifulsoup4==4.12.2
bindep==2.11.0
black==23.11.0
black==23.12.0
bracex==2.4
build==1.0.3
cachetools==5.3.2
Expand All @@ -36,14 +39,15 @@ cryptography==41.0.7
csscompressor==0.9.5
cssselect2==0.7.0
defusedxml==0.7.1
distlib==0.3.7
distlib==0.3.8
distro==1.8.0
docstring-parser-fork==0.0.5
docutils==0.20.1
enrich==1.2.7
exceptiongroup==1.2.0
execnet==2.0.2
filelock==3.13.1
frozenlist==1.4.0
ghp-import==2.1.0
griffe==0.38.1
htmlmin2==0.1.13
Expand Down Expand Up @@ -74,6 +78,7 @@ mkdocs-monorepo-plugin==1.0.5
mkdocstrings==0.24.0
mkdocstrings-python==1.7.5
molecule==6.0.2
multidict==6.0.4
mypy==1.7.1
mypy-extensions==1.0.0
nodeenv==1.8.0
Expand Down Expand Up @@ -102,7 +107,7 @@ pytest-ansible==4.1.1
pytest-xdist==3.5.0
python-daemon==3.0.1
python-dateutil==2.8.2
python-gnupg==0.5.1
python-gnupg==0.5.2
python-slugify==8.0.1
pyyaml==6.0.1
pyyaml-env-tag==0.1
Expand Down Expand Up @@ -136,6 +141,7 @@ wcmatch==8.5
webencodings==0.5.1
wheel==0.42.0
yamllint==1.33.0
yarl==1.9.4

# The following packages are considered to be unsafe in a requirements file:
# pip
Expand Down
5 changes: 3 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ repos:
- prettier-plugin-sort-json

- repo: https://github.com/psf/black
rev: 23.11.0
rev: 23.12.0
hooks:
- id: black

Expand Down Expand Up @@ -83,7 +83,7 @@ repos:
- "--config=pyproject.toml"

- repo: https://github.com/pycqa/pylint.git
rev: v3.0.1
rev: v3.0.3
hooks:
- id: pylint
args:
Expand Down Expand Up @@ -112,6 +112,7 @@ repos:
name: deps
alias: deps
always_run: true
stages: [manual]
entry: >
sh -c "
pip-compile -q --upgrade --no-annotate --output-file=.config/lock-requirements.txt pyproject.toml --strip-extras &&
Expand Down

0 comments on commit df07d89

Please sign in to comment.