Skip to content

Commit a3e0212

Browse files
committed
Update dependencies
1 parent 29397ef commit a3e0212

File tree

3 files changed

+35
-46
lines changed

3 files changed

+35
-46
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
manylinux: ${{ matrix.linux }}
126126

127127
- name: Upload wheels
128-
uses: actions/upload-artifact@v4
128+
uses: actions/upload-artifact@v5
129129
with:
130130
name: linux-${{ matrix.linux }}-${{ matrix.target }}-wheels
131131
path: dist
@@ -152,7 +152,7 @@ jobs:
152152
sccache: 'true'
153153

154154
- name: Upload wheels
155-
uses: actions/upload-artifact@v4
155+
uses: actions/upload-artifact@v5
156156
with:
157157
name: windows-${{ matrix.target }}-wheels
158158
path: dist
@@ -179,7 +179,7 @@ jobs:
179179
sccache: 'true'
180180

181181
- name: Upload wheels
182-
uses: actions/upload-artifact@v4
182+
uses: actions/upload-artifact@v5
183183
with:
184184
name: macos-${{ matrix.target }}-wheels
185185
path: dist
@@ -192,7 +192,7 @@ jobs:
192192

193193
steps:
194194
- name: Download wheels from previous jobs
195-
uses: actions/download-artifact@v5
195+
uses: actions/download-artifact@v6
196196
with:
197197
path: wheels
198198
merge-multiple: true

Cargo.lock

Lines changed: 25 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,29 +34,29 @@ crate-type = ["cdylib", "rlib"]
3434

3535
[dependencies]
3636
itertools = "0.14.0"
37-
ndarray = "0.17.0"
37+
ndarray = "0.17.1"
3838
petgraph = {version = "0.8.3", default-features = false, features = ["stable_graph"]}
3939
regex = "1.12.2"
4040
unic-char-range = "0.9.0"
4141
unic-ucd-category = "0.9.0"
4242
unicode-segmentation = "1.12.0"
4343

4444
[target.'cfg(not(target_family = "wasm"))'.dependencies]
45-
clap = {version = "4.5.49", features = ["derive", "wrap_help"], optional = true}
46-
pyo3 = {version = "0.26.0", optional = true}
45+
clap = {version = "4.5.51", features = ["derive", "wrap_help"], optional = true}
46+
pyo3 = {version = "0.27.1", optional = true}
4747

4848
[target.'cfg(target_family = "wasm")'.dependencies]
4949
wasm-bindgen = "0.2.100"
5050

5151
[dev-dependencies]
52-
indoc = "2.0.6"
52+
indoc = "2.0.7"
5353
rstest = "0.26.1"
5454

5555
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
56-
assert_cmd = "2.0.17"
56+
assert_cmd = "2.1.1"
5757
criterion = "0.7.0"
5858
predicates = "3.1.3"
59-
proptest = "1.8.0"
59+
proptest = "1.9.0"
6060
tempfile = "3.23.0"
6161

6262
[target.'cfg(target_family = "wasm")'.dev-dependencies]

0 commit comments

Comments
 (0)