Skip to content

Commit fc67b29

Browse files
authored
build(deps): bump python dependencies (#214)
Dependabot seems to have trouble with uv when a package in the workspace is a C-extension (using rust). - Updated uv.lock - Updated the git-cliff config and updated the CHANGELOG.md - Added a username to the list of intentional typos.
1 parent 26e5b8a commit fc67b29

File tree

6 files changed

+176
-123
lines changed

6 files changed

+176
-123
lines changed

.config/cliff.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ Full commit diff: [`{% if previous.version -%}
6363
{%- endif %}...{{ last_commit }}`][{{ this_version }}]
6464
{% if github.contributors | filter(attribute="is_first_time", value=true) | length != 0 %}
6565
## New Contributors
66-
{%- endif -%}
66+
{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
67+
- @{{ contributor.username }} made their first contribution
68+
{%- if contributor.pr_number %} in \
69+
[#{{ contributor.pr_number }}]({{ self::remote_url() }}/pull/{{ contributor.pr_number }}) \
70+
{%- endif %}
71+
{%- endfor %}
72+
{% endif %}
6773
68-
{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
69-
* @{{ contributor.username }} made their first contribution
70-
{%- if contributor.pr_number %} in \
71-
[#{{ contributor.pr_number }}]({{ self::remote_url() }}/pull/{{ contributor.pr_number }}) \
72-
{%- endif %}
73-
{%- endfor %}\n
7474
"""
7575
# template for the changelog footer
7676
footer = """

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8989
Full commit diff: [`v2.0.0-rc12...v2.0.0-rc13`][2.0.0-rc13]
9090

9191
## New Contributors
92-
* @shenxianpeng made their first contribution in [#89](https://github.com/cpp-linter/cpp-linter-rs/pull/89)
92+
93+
- @shenxianpeng made their first contribution in [#89](https://github.com/cpp-linter/cpp-linter-rs/pull/89)
94+
9395
## [2.0.0-rc12] - 2024-12-12
9496

9597
### <!-- 1 --> 🚀 Added
@@ -255,6 +257,8 @@ Full commit diff: [`v2.0.0-rc1...v2.0.0-rc2`][2.0.0-rc2]
255257
Full commit diff: [`2e25fec...v2.0.0-rc1`][2.0.0-rc1]
256258

257259
## New Contributors
258-
* @2bndy5 made their first contribution
259-
* @dependabot[bot] made their first contribution in [#34](https://github.com/cpp-linter/cpp-linter-rs/pull/34)
260+
261+
- @2bndy5 made their first contribution
262+
- @dependabot[bot] made their first contribution in [#34](https://github.com/cpp-linter/cpp-linter-rs/pull/34)
263+
260264
<!-- generated by git-cliff -->

cspell.config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ words:
100100
- sdist
101101
- serde
102102
- Shen
103+
- shenxianpeng
103104
- startswith
104105
- superfences
105106
- tada

docs/pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ dynamic = ["version"]
1616

1717
[dependency-groups]
1818
dev = [
19-
"maturin==1.9.1",
20-
"mypy==1.17.0",
19+
"maturin==1.10.1",
20+
"mypy==1.18.2",
2121
"patchelf==0.17.2.2 ; sys_platform == 'linux'",
22-
"ruff==0.14.3",
22+
"ruff==0.14.4",
2323
]
2424
docs = [
2525
"markdown-gfm-admonition==0.1.1",
2626
"mkdocs==1.6.1",
2727
"mkdocs-gen-files==0.5.0",
2828
"mkdocs-include-markdown-plugin==7.2.0",
29-
"mkdocs-material==9.6.22",
29+
"mkdocs-material==9.7.0",
3030
"pyyaml==6.0.3",
3131
]
3232

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ manifest-path = "bindings/python/Cargo.toml"
5252

5353
[dependency-groups]
5454
dev = [
55-
"maturin==1.9.1",
56-
"mypy==1.17.0",
55+
"maturin==1.10.1",
56+
"mypy==1.18.2",
5757
"patchelf==0.17.2.2 ; sys_platform == 'linux'",
5858
"pre-commit>=4.2.0",
59-
"ruff==0.14.3",
59+
"ruff==0.14.4",
6060
]
6161
test = [
62-
"meson==1.8.2",
62+
"meson==1.9.1",
6363
]
6464

6565
[tool.uv]

0 commit comments

Comments
 (0)