Skip to content

Commit e864add

Browse files
fix(deps): update dependency chardet to v7 (#156)
1 parent 180b9cb commit e864add

7 files changed

Lines changed: 207 additions & 342 deletions

File tree

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717
# ====================================================
1818
semantic-release:
1919
name: semantic-release
20-
uses: wislertt/zerv/.github/workflows/shared-semantic-release.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
20+
uses: wislertt/zerv/.github/workflows/shared-semantic-release.yml@643777b9a3573497fd9f8edabe340f256acce981 # v0.8.13
2121
with:
2222
allowed_workflow_dispatch_branches: '["main"]'
2323
fail_on_invalid_workflow_dispatch_ref: true
2424

2525
zerv-versioning:
2626
needs: semantic-release
2727
if: needs.semantic-release.outputs.is_valid_semantic_release == 'true'
28-
uses: wislertt/zerv/.github/workflows/shared-zerv-versioning.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
28+
uses: wislertt/zerv/.github/workflows/shared-zerv-versioning.yml@643777b9a3573497fd9f8edabe340f256acce981 # v0.8.13
2929

3030
create-version-prefix-tags:
3131
needs: zerv-versioning
32-
uses: wislertt/zerv/.github/workflows/shared-create-tags.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
32+
uses: wislertt/zerv/.github/workflows/shared-create-tags.yml@643777b9a3573497fd9f8edabe340f256acce981 # v0.8.13
3333
with:
3434
tags: >-
3535
[

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
# ====================================================
1515
check-pre-release:
1616
name: check-pre-release
17-
uses: wislertt/zerv/.github/workflows/shared-check-pr-label-and-branch.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
17+
uses: wislertt/zerv/.github/workflows/shared-check-pr-label-and-branch.yml@643777b9a3573497fd9f8edabe340f256acce981 # v0.8.13
1818
with:
1919
target_label: "pre-release"
2020
branch_prefixes: '["release/"]'
@@ -23,7 +23,7 @@ jobs:
2323
zerv-versioning:
2424
name: zerv-versioning
2525
needs: check-pre-release
26-
uses: wislertt/zerv/.github/workflows/shared-zerv-versioning.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
26+
uses: wislertt/zerv/.github/workflows/shared-zerv-versioning.yml@643777b9a3573497fd9f8edabe340f256acce981 # v0.8.13
2727
with:
2828
schema: >-
2929
${{ (needs.check-pre-release.outputs.is_valid == 'true'
@@ -34,7 +34,7 @@ jobs:
3434
name: tag-pre-release
3535
needs: [zerv-versioning, check-pre-release]
3636
if: needs.check-pre-release.outputs.is_valid == 'true'
37-
uses: wislertt/zerv/.github/workflows/shared-create-tags.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
37+
uses: wislertt/zerv/.github/workflows/shared-create-tags.yml@643777b9a3573497fd9f8edabe340f256acce981 # v0.8.13
3838
with:
3939
tags: '["${{ fromJson(needs.zerv-versioning.outputs.versions).v_semver }}"]'
4040

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
CACHE_KEY_PREFIX: deps-${{ github.workflow }}-${{ github.job }}-${{ runner.os }}
2323
CACHE_KEY_DEPS: ${{ hashFiles('uv.lock', '.pre-commit-config.yaml') }}
24-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
24+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
2525
with:
2626
path: |
2727
~/.cache/pre-commit

.github/workflows/test-reproducibility.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
env:
1919
CACHE_KEY_PREFIX: venv-${{ github.workflow }}-${{ github.job }}-${{ runner.os }}
2020
CACHE_KEY_DEPS: ${{ hashFiles('uv.lock') }}
21-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
21+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
2222
with:
2323
path: |
2424
~/.local/share/uv
@@ -40,7 +40,7 @@ jobs:
4040
id: cache-graphviz
4141
env:
4242
CACHE_KEY_PREFIX: graphviz-${{ github.workflow }}-${{ github.job }}-${{ runner.os }}
43-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
43+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
4444
with:
4545
path: ~/graphviz-cache
4646
key: ${{ env.CACHE_KEY_PREFIX }}-${{ github.run_id }}-${{ github.run_attempt }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
env:
4040
CACHE_KEY_PREFIX: venv-${{ github.workflow }}-${{ github.job }}-${{ runner.os }}-py${{ matrix.python-version }}
4141
CACHE_KEY_DEPS: ${{ hashFiles('uv.lock') }}
42-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
42+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
4343
with:
4444
path: |
4545
~/.local/share/uv
@@ -61,7 +61,7 @@ jobs:
6161
id: cache-graphviz
6262
env:
6363
CACHE_KEY_PREFIX: graphviz-${{ github.workflow }}-${{ github.job }}-${{ runner.os }}
64-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
64+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
6565
with:
6666
path: ~/graphviz-cache
6767
key: ${{ env.CACHE_KEY_PREFIX }}-${{ github.run_id }}-${{ github.run_attempt }}

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ classifiers = [
2525
]
2626
dependencies = [
2727
"anytree>=2.13.0",
28-
"chardet>=5.2.0,<6.0.0", # restricted by requests
28+
"chardet>=7.4.3", # restricted by requests
2929
"cookiecutter>=2.6.0",
3030
"graphviz>=0.21",
3131
"json5>=0.13.0",
@@ -49,9 +49,7 @@ dev = [
4949
"bakefile[lib]>=0.0.8",
5050
"deptry>=0.24.0",
5151
"ipykernel>=7.0.0",
52-
"isort>=7.0.0",
5352
"jupytext>=1.16.6",
54-
"mypy>=1.17.1",
5553
"nbqa>=1.9.1",
5654
"pre-commit>=4.3.0",
5755
"pytest-cov>=7.0.0",
@@ -61,7 +59,7 @@ dev = [
6159
]
6260

6361
[build-system]
64-
requires = ["uv_build>=0.10.0,<0.11.0"]
62+
requires = ["uv_build>=0.11.0,<0.12.0"]
6563
build-backend = "uv_build"
6664

6765
[tool.coverage.run]

0 commit comments

Comments
 (0)