Skip to content
Open
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
4 changes: 2 additions & 2 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-24.04
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
- name: Set up Python
uses: actions/setup-python@v6.2.0
with:
Expand All @@ -37,7 +37,7 @@ jobs:
twine-check:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
- name: Set up Python
uses: actions/setup-python@v6.2.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@v6.0.2
- uses: actions/checkout@v6.0.3
with:
fetch-depth: 0
- uses: actions/setup-python@v6.2.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@v6.0.2
- uses: actions/checkout@v6.0.3
- uses: actions/setup-python@v6.2.0
with:
python-version: "3.14"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
id-token: write
environment: pypi.org
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
with:
fetch-depth: 0
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
version: "3.14"
toxenv: py314,smoke
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
- name: Set up Python ${{ matrix.python.version }}
uses: actions/setup-python@v6.2.0
with:
Expand All @@ -65,7 +65,7 @@ jobs:
matrix:
toxenv: [api_func_v4, cli_func_v4]
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
- name: Set up Python
uses: actions/setup-python@v6.2.0
with:
Expand All @@ -77,7 +77,7 @@ jobs:
TOXENV: ${{ matrix.toxenv }}
run: tox -- --override-ini='log_cli=True'
- name: Upload codecov coverage
uses: codecov/codecov-action@v6.0.1
uses: codecov/codecov-action@v6.0.2
with:
files: ./coverage.xml
flags: ${{ matrix.toxenv }}
Expand All @@ -87,7 +87,7 @@ jobs:
coverage:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6.2.0
with:
Expand All @@ -100,7 +100,7 @@ jobs:
TOXENV: cover
run: tox
- name: Upload codecov coverage
uses: codecov/codecov-action@v6.0.1
uses: codecov/codecov-action@v6.0.2
with:
files: ./coverage.xml
flags: unit
Expand All @@ -111,7 +111,7 @@ jobs:
runs-on: ubuntu-latest
name: Python wheel
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
- uses: actions/setup-python@v6.2.0
with:
python-version: "3.14"
Expand All @@ -129,7 +129,7 @@ jobs:
runs-on: ubuntu-latest
needs: [dist]
steps:
- uses: actions/checkout@v6.0.2
- uses: actions/checkout@v6.0.3
- name: Set up Python
uses: actions/setup-python@v6.2.0
with:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/pycqa/pylint
rev: v4.0.5
rev: v4.0.6
hooks:
- id: pylint
additional_dependencies:
Expand Down Expand Up @@ -51,6 +51,6 @@ repos:
- id: rst-directive-colons
- id: rst-inline-touching-normal
- repo: https://github.com/maxbrunet/pre-commit-renovate
rev: 43.205.2
rev: 43.227.0
hooks:
- id: renovate-config-validator
4 changes: 2 additions & 2 deletions requirements-lint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ commitizen==4.16.3
flake8==7.3.0
isort==8.0.1
mypy==2.1.0
pylint==4.0.5
pytest==9.0.3
pylint==4.0.6
pytest==9.1.0
responses==0.26.1
respx==0.23.1
types-PyYAML==6.0.12.20260518
Expand Down
4 changes: 2 additions & 2 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
-r requirements.txt
anyio==4.13.0
anyio==4.14.0
build==1.5.0
coverage==7.14.1
pytest-console-scripts==1.4.1
pytest-cov==7.1.0
pytest-github-actions-annotate-failures==0.4.0
pytest==9.0.3
pytest==9.1.0
PyYaml==6.0.3
responses==0.26.1
respx==0.23.1
Expand Down