Skip to content

Commit fbb8690

Browse files
chore(deps): update all non-major dependencies
1 parent c44a290 commit fbb8690

13 files changed

+60
-60
lines changed

.github/workflows/docs.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,31 +22,31 @@ jobs:
2222
sphinx:
2323
runs-on: ubuntu-20.04
2424
steps:
25-
- uses: actions/checkout@v3.5.2
25+
- uses: actions/checkout@v3.6.0
2626
- name: Set up Python
27-
uses: actions/setup-python@v4.6.1
27+
uses: actions/setup-python@v4.8.0
2828
with:
29-
python-version: "3.11"
29+
python-version: "3.13"
3030
- name: Install dependencies
3131
run: pip install tox
3232
- name: Build docs
3333
env:
3434
TOXENV: docs
3535
run: tox
3636
- name: Archive generated docs
37-
uses: actions/upload-artifact@v3.1.2
37+
uses: actions/upload-artifact@v3.2.1
3838
with:
3939
name: html-docs
4040
path: build/sphinx/html/
4141

4242
twine-check:
4343
runs-on: ubuntu-20.04
4444
steps:
45-
- uses: actions/checkout@v3.5.2
45+
- uses: actions/checkout@v3.6.0
4646
- name: Set up Python
47-
uses: actions/setup-python@v4.6.1
47+
uses: actions/setup-python@v4.8.0
4848
with:
49-
python-version: "3.11"
49+
python-version: "3.13"
5050
- name: Install dependencies
5151
run: pip install tox twine wheel
5252
- name: Check twine readme rendering

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
lint:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v3.5.2
25+
- uses: actions/checkout@v3.6.0
2626
with:
2727
fetch-depth: 0
28-
- uses: actions/setup-python@v4.6.1
28+
- uses: actions/setup-python@v4.8.0
2929
with:
30-
python-version: "3.11"
30+
python-version: "3.13"
3131
- run: pip install --upgrade tox
3232
- name: Run commitizen (https://commitizen-tools.github.io/commitizen/)
3333
run: tox -e cz

.github/workflows/lock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ jobs:
1515
action:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: dessant/lock-threads@v4.0.0
18+
- uses: dessant/lock-threads@v4.0.1
1919
with:
2020
process-only: 'issues'

.github/workflows/pre_commit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
pre_commit:
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: actions/checkout@v3.5.2
33-
- uses: actions/setup-python@v4.6.1
32+
- uses: actions/checkout@v3.6.0
33+
- uses: actions/setup-python@v4.8.0
3434
with:
35-
python-version: "3.11"
35+
python-version: "3.13"
3636
- name: install tox
3737
run: pip install tox==3.26.0
3838
- name: pre-commit

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
id-token: write
1414
environment: pypi.org
1515
steps:
16-
- uses: actions/checkout@v3.5.2
16+
- uses: actions/checkout@v3.6.0
1717
with:
1818
fetch-depth: 0
1919
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
@@ -29,7 +29,7 @@ jobs:
2929
echo "::add-mask::${api_token}"
3030
echo "api-token=${api_token}" >> "${GITHUB_OUTPUT}"
3131
- name: Python Semantic Release
32-
uses: relekang/python-semantic-release@v7.33.5
32+
uses: relekang/python-semantic-release@v7.34.6
3333
with:
3434
github_token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
3535
pypi_token: ${{ steps.mint-token.outputs.api-token }}

.github/workflows/test.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ jobs:
4848
version: "3.11"
4949
toxenv: py310,smoke
5050
steps:
51-
- uses: actions/checkout@v3.5.2
51+
- uses: actions/checkout@v3.6.0
5252
- name: Set up Python ${{ matrix.python.version }}
53-
uses: actions/setup-python@v4.6.1
53+
uses: actions/setup-python@v4.8.0
5454
with:
5555
python-version: ${{ matrix.python.version }}
5656
- name: Install dependencies
@@ -66,19 +66,19 @@ jobs:
6666
matrix:
6767
toxenv: [api_func_v4, cli_func_v4]
6868
steps:
69-
- uses: actions/checkout@v3.5.2
69+
- uses: actions/checkout@v3.6.0
7070
- name: Set up Python
71-
uses: actions/setup-python@v4.6.1
71+
uses: actions/setup-python@v4.8.0
7272
with:
73-
python-version: "3.11"
73+
python-version: "3.13"
7474
- name: Install dependencies
7575
run: pip install tox
7676
- name: Run tests
7777
env:
7878
TOXENV: ${{ matrix.toxenv }}
7979
run: tox -- --override-ini='log_cli=True'
8080
- name: Upload codecov coverage
81-
uses: codecov/codecov-action@v3.1.4
81+
uses: codecov/codecov-action@v3.1.6
8282
with:
8383
files: ./coverage.xml
8484
flags: ${{ matrix.toxenv }}
@@ -87,11 +87,11 @@ jobs:
8787
coverage:
8888
runs-on: ubuntu-20.04
8989
steps:
90-
- uses: actions/checkout@v3.5.2
90+
- uses: actions/checkout@v3.6.0
9191
- name: Set up Python ${{ matrix.python-version }}
92-
uses: actions/setup-python@v4.6.1
92+
uses: actions/setup-python@v4.8.0
9393
with:
94-
python-version: "3.11"
94+
python-version: "3.13"
9595
- name: Install dependencies
9696
run: pip install tox
9797
- name: Run tests
@@ -100,7 +100,7 @@ jobs:
100100
TOXENV: cover
101101
run: tox
102102
- name: Upload codecov coverage
103-
uses: codecov/codecov-action@v3.1.4
103+
uses: codecov/codecov-action@v3.1.6
104104
with:
105105
files: ./coverage.xml
106106
flags: unit
@@ -111,9 +111,9 @@ jobs:
111111
name: Python wheel
112112
steps:
113113
- uses: actions/checkout@v1.2.0
114-
- uses: actions/setup-python@v2.3.3
114+
- uses: actions/setup-python@v2.3.4
115115
with:
116-
python-version: "3.11"
116+
python-version: "3.13"
117117
- name: Install dependencies
118118
run: |
119119
pip install -r requirements-test.txt
@@ -128,11 +128,11 @@ jobs:
128128
runs-on: ubuntu-latest
129129
needs: [dist]
130130
steps:
131-
- uses: actions/checkout@v3.5.2
131+
- uses: actions/checkout@v3.6.0
132132
- name: Set up Python
133-
uses: actions/setup-python@v4.6.1
133+
uses: actions/setup-python@v4.8.0
134134
with:
135-
python-version: '3.11'
135+
python-version: '3.13'
136136
- uses: actions/download-artifact@v3.0.2
137137
with:
138138
name: dist

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: python:3.11
1+
image: python:3.13
22

33
stages:
44
- deploy

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@ default_language_version:
33

44
repos:
55
- repo: https://github.com/psf/black
6-
rev: 23.3.0
6+
rev: 23.12.1
77
hooks:
88
- id: black
99
- repo: https://github.com/commitizen-tools/commitizen
10-
rev: v3.2.2
10+
rev: v3.31.0
1111
hooks:
1212
- id: commitizen
1313
stages: [commit-msg]
1414
- repo: https://github.com/pycqa/flake8
15-
rev: 6.0.0
15+
rev: 6.1.0
1616
hooks:
1717
- id: flake8
1818
- repo: https://github.com/pycqa/isort
19-
rev: 5.12.0
19+
rev: 5.13.2
2020
hooks:
2121
- id: isort
2222
- repo: https://github.com/pycqa/pylint
23-
rev: v2.17.4
23+
rev: v2.17.7
2424
hooks:
2525
- id: pylint
2626
additional_dependencies:
@@ -30,7 +30,7 @@ repos:
3030
- requests-toolbelt==0.9.1
3131
files: 'gitlab/'
3232
- repo: https://github.com/pre-commit/mirrors-mypy
33-
rev: v1.3.0
33+
rev: v1.15.0
3434
hooks:
3535
- id: mypy
3636
args: []

requirements-docs.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r requirements.txt
2-
furo==2023.3.27
3-
jinja2==3.1.2
2+
furo==2023.9.10
3+
jinja2==3.1.6
44
myst-parser==1.0.0
55
sphinx==6.2.1
6-
sphinxcontrib-autoprogram==0.1.8
6+
sphinxcontrib-autoprogram==0.1.9

requirements-lint.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
-r requirements.txt
22
argcomplete==2.0.0
3-
black==23.3.0
4-
commitizen==3.2.2
5-
flake8==6.0.0
6-
isort==5.12.0
7-
mypy==1.3.0
8-
pylint==2.17.4
9-
pytest==7.3.1
10-
responses==0.23.1
11-
types-PyYAML==6.0.12.10
12-
types-requests==2.31.0.0
3+
black==23.12.1
4+
commitizen==3.31.0
5+
flake8==6.1.0
6+
isort==5.13.2
7+
mypy==1.15.0
8+
pylint==2.17.7
9+
pytest==7.4.4
10+
responses==0.25.7
11+
types-PyYAML==6.0.12.20250402
12+
types-requests==2.32.0.20250328
1313
types-setuptools==67.8.0.0

requirements-precommit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pre-commit==3.3.2
1+
pre-commit==3.8.0

requirements-test.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
-r requirements.txt
22
build==0.10.0
3-
coverage==7.2.6
4-
pytest-console-scripts==1.4.0
3+
coverage==7.8.0
4+
pytest-console-scripts==1.4.1
55
pytest-cov==4.1.0
6-
pytest-github-actions-annotate-failures==0.2.0
7-
pytest==7.3.1
6+
pytest-github-actions-annotate-failures==0.3.0
7+
pytest==7.4.4
88
PyYaml==5.4.1
9-
responses==0.23.1
9+
responses==0.25.7
1010
setuptools==67.8.0
11-
wheel==0.40.0
11+
wheel==0.45.1

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
requests==2.28.2
1+
requests==2.32.3
22
requests-toolbelt==1.0.0
3-
typing-extensions==4.6.2 ; python_version < "3.8"
3+
typing-extensions==4.13.1 ; python_version < "3.8"

0 commit comments

Comments
 (0)