Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
actions: read
steps:
- name: Python Coverage Comment
uses: py-cov-action/python-coverage-comment-action@0544a9c648672334d94ec5dd1add7410b4470ddc
uses: py-cov-action/python-coverage-comment-action@e623398c19eb3853a5572d4a516e10b15b5cefbc
with:
GITHUB_TOKEN: ${{ github.token }}
GITHUB_PR_RUN_ID: ${{ github.event.workflow_run.id }}
12 changes: 6 additions & 6 deletions .github/workflows/publish-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Build a binary wheel and a source tarball
run: python3 -m hatch build
- name: Store the distribution packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: python-package-distributions
path: dist/
Expand All @@ -45,7 +45,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: python-package-distributions
path: dist/
Expand All @@ -66,12 +66,12 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: python-package-distributions
path: dist/
- name: Sign the dists with Sigstore
uses: sigstore/gh-action-sigstore-python@f7ad0af51a5648d09a20d00370f0a91c3bdf8f84 #v3.0.1
uses: sigstore/gh-action-sigstore-python@f832326173235dcb00dd5d92cd3f353de3188e6c #v3.1.0
with:
inputs: >-
./dist/*.tar.gz
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: python-package-distributions
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyright.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
Expand All @@ -37,7 +37,7 @@ jobs:
env:
COVERAGE_FILE: ".coverage.${{ matrix.os }}.${{ matrix.python-version }}"
- name: Store coverage file
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: coverage-${{ matrix.os }}-${{ matrix.python-version }}
path: .coverage.${{ matrix.os }}.${{ matrix.python-version }}
Expand All @@ -51,8 +51,8 @@ jobs:
pull-requests: write
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/download-artifact@v5
- uses: actions/checkout@v6
- uses: actions/download-artifact@v6
id: download
with:
pattern: coverage-*
Expand All @@ -63,12 +63,12 @@ jobs:
echo "[run]" >> .coveragerc
echo "relative_files = true" >> .coveragerc
- name: Python Coverage Comment
uses: py-cov-action/python-coverage-comment-action@0544a9c648672334d94ec5dd1add7410b4470ddc
uses: py-cov-action/python-coverage-comment-action@e623398c19eb3853a5572d4a516e10b15b5cefbc
with:
GITHUB_TOKEN: ${{ github.token }}
MERGE_COVERAGE_FILES: true
- name: Store Pull Request comment to be posted
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: steps.coverage_comment.outputs.COMMENT_FILE_WRITTEN == 'true'
with:
name: python-coverage-comment-action
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ruff.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion annotated_logger/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
# https://test.pypi.org/project/annotated-logger/
# The dev versions in testpypi can then be pulled in to whatever project needed
# the new feature.
VERSION = "1.3.2" # pragma: no mutate
VERSION = "1.3.3" # pragma: no mutate

T = TypeVar("T")
P = ParamSpec("P")
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ python-json-logger==4.0.0
# via hatch.envs.default
requests==2.32.5
# via hatch.envs.default
urllib3==2.5.0
urllib3==2.6.2
# via requests
18 changes: 9 additions & 9 deletions requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@

certifi==2025.11.12
# via requests
cfgv==3.4.0
cfgv==3.5.0
# via pre-commit
charset-normalizer==3.4.4
# via requests
coverage==7.11.3
coverage==7.13.1
# via
# hatch.envs.dev
# pytest-cov
distlib==0.4.0
# via virtualenv
filelock==3.20.0
filelock==3.20.1
# via virtualenv
freezegun==1.5.5
# via pytest-freezer
Expand All @@ -43,27 +43,27 @@ iniconfig==2.3.0
# via pytest
makefun==1.16.0
# via hatch.envs.dev
nodeenv==1.9.1
nodeenv==1.10.0
# via
# pre-commit
# pyright
packaging==25.0
# via pytest
platformdirs==4.5.0
platformdirs==4.5.1
# via virtualenv
pluggy==1.6.0
# via
# pytest
# pytest-cov
pre-commit==4.4.0
pre-commit==4.5.1
# via hatch.envs.dev
pychoir==0.0.29
# via hatch.envs.dev
pygments==2.19.2
# via pytest
pyright==1.1.407
# via hatch.envs.dev
pytest==9.0.1
pytest==9.0.2
# via
# hatch.envs.dev
# pytest-cov
Expand Down Expand Up @@ -93,15 +93,15 @@ requests==2.32.5
# requests-mock
requests-mock==1.12.1
# via hatch.envs.dev
ruff==0.14.4
ruff==0.14.10
# via hatch.envs.dev
six==1.17.0
# via python-dateutil
typing-extensions==4.15.0
# via
# hatch.envs.dev
# pyright
urllib3==2.5.0
urllib3==2.6.2
# via requests
virtualenv==20.35.4
# via pre-commit
Loading