Skip to content

chore(deps): update all non-major dependencies #2833

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
sphinx:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- name: Set up Python
uses: actions/setup-python@v5.1.0
with:
Expand All @@ -34,15 +34,15 @@ jobs:
TOXENV: docs
run: tox
- name: Archive generated docs
uses: actions/upload-artifact@v4.3.1
uses: actions/upload-artifact@v4.3.3
with:
name: html-docs
path: build/sphinx/html/

twine-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- name: Set up Python
uses: actions/setup-python@v5.1.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
- uses: actions/setup-python@v5.1.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
pre_commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- uses: actions/setup-python@v5.1.0
with:
python-version: "3.11"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ jobs:
id-token: write
environment: pypi.org
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
with:
fetch-depth: 0
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}

- name: Python Semantic Release
id: release
uses: python-semantic-release/python-semantic-release@v9.3.1
uses: python-semantic-release/python-semantic-release@v9.5.0
with:
github_token: ${{ secrets.RELEASE_GITHUB_TOKEN }}

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
version: "3.12"
toxenv: py312,smoke
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- name: Set up Python ${{ matrix.python.version }}
uses: actions/setup-python@v5.1.0
with:
Expand All @@ -66,7 +66,7 @@ jobs:
matrix:
toxenv: [api_func_v4, cli_func_v4]
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- name: Set up Python
uses: actions/setup-python@v5.1.0
with:
Expand All @@ -78,7 +78,7 @@ jobs:
TOXENV: ${{ matrix.toxenv }}
run: tox -- --override-ini='log_cli=True'
- name: Upload codecov coverage
uses: codecov/codecov-action@v4.1.1
uses: codecov/codecov-action@v4.3.0
with:
files: ./coverage.xml
flags: ${{ matrix.toxenv }}
Expand All @@ -87,7 +87,7 @@ jobs:
coverage:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.1.0
with:
Expand All @@ -100,7 +100,7 @@ jobs:
TOXENV: cover
run: tox
- name: Upload codecov coverage
uses: codecov/codecov-action@v4.1.1
uses: codecov/codecov-action@v4.3.0
with:
files: ./coverage.xml
flags: unit
Expand All @@ -110,7 +110,7 @@ jobs:
runs-on: ubuntu-latest
name: Python wheel
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- uses: actions/setup-python@v5.1.0
with:
python-version: "3.12"
Expand All @@ -119,7 +119,7 @@ jobs:
pip install -r requirements-test.txt
- name: Build package
run: python -m build -o dist/
- uses: actions/upload-artifact@v4.3.1
- uses: actions/upload-artifact@v4.3.3
with:
name: dist
path: dist
Expand All @@ -128,12 +128,12 @@ jobs:
runs-on: ubuntu-latest
needs: [dist]
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.3
- name: Set up Python
uses: actions/setup-python@v5.1.0
with:
python-version: '3.12'
- uses: actions/download-artifact@v4.1.4
- uses: actions/download-artifact@v4.1.7
with:
name: dist
path: dist
Expand Down
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ default_language_version:

repos:
- repo: https://github.com/psf/black
rev: 24.3.0
rev: 24.4.1
hooks:
- id: black
- repo: https://github.com/commitizen-tools/commitizen
rev: v3.20.0
rev: v3.24.0
hooks:
- id: commitizen
stages: [commit-msg]
Expand All @@ -30,7 +30,7 @@ repos:
- requests-toolbelt==1.0.0
files: 'gitlab/'
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.9.0
rev: v1.10.0
hooks:
- id: mypy
args: []
Expand All @@ -47,6 +47,6 @@ repos:
- id: rst-directive-colons
- id: rst-inline-touching-normal
- repo: https://github.com/maxbrunet/pre-commit-renovate
rev: 37.272.0
rev: 37.321.2
hooks:
- id: renovate-config-validator
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ You can also mount your own config file:
Usage inside GitLab CI
~~~~~~~~~~~~~~~~~~~~~~

If you want to use the Docker image directly inside your GitLab CI as an `image`, you will need to override
the `entrypoint`, `as noted in the official GitLab documentation <https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#override-the-entrypoint-of-an-image>`__:
If you want to use the Docker image directly inside your GitLab CI as an ``image``, you will need to override
the ``entrypoint``, `as noted in the official GitLab documentation <https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#override-the-entrypoint-of-an-image>`__:

.. code-block:: yaml

Expand Down
2 changes: 1 addition & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
furo==2024.1.29
jinja2==3.1.3
myst-parser==2.0.0
sphinx==7.2.6
sphinx==7.3.7
sphinxcontrib-autoprogram==0.1.9
10 changes: 5 additions & 5 deletions requirements-lint.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
-r requirements.txt
argcomplete==2.0.0
black==24.3.0
commitizen==3.20.0
black==24.4.1
commitizen==3.24.0
flake8==7.0.0
isort==5.13.2
mypy==1.9.0
mypy==1.10.0
pylint==3.1.0
pytest==8.1.1
responses==0.25.0
types-PyYAML==6.0.12.20240311
types-requests==2.31.0.20240311
types-setuptools==69.2.0.20240317
types-requests==2.31.0.20240406
types-setuptools==69.5.0.20240423
4 changes: 2 additions & 2 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r requirements.txt
build==1.1.1
coverage==7.4.4
build==1.2.1
coverage==7.5.0
pytest-console-scripts==1.4.1
pytest-cov==5.0.0
pytest-github-actions-annotate-failures==0.2.0
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
requests==2.31.0
requests-toolbelt==1.0.0
typing-extensions==4.10.0 ; python_version < "3.8"
typing-extensions==4.11.0 ; python_version < "3.8"
Loading