Skip to content

Commit f4849bc

Browse files
committed
Bump versions in MSRV check
1 parent 1cc7ede commit f4849bc

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,6 @@ jobs:
208208
import toml
209209
cargo_toml = toml.load("Cargo.toml")
210210
cargo_toml["dependencies"]["ndarray"] = "0.15.6"
211-
cargo_toml["dependencies"]["parking_lot"] = "0.11.2"
212-
cargo_toml["dependencies"]["num-complex"] = "0.2.4"
213-
cargo_toml["dependencies"]["once_cell"] = "1.14.0"
214211
with open("Cargo.toml", "w") as f:
215212
toml.dump(cargo_toml, f)
216213
working-directory: examples/simple
@@ -227,10 +224,6 @@ jobs:
227224
pkg_id = pkg["name"] + ":" + pkg["version"]
228225
if pkg["name"] == "ndarray" and pkg["version"] != "0.15.6":
229226
subprocess.run(["cargo", "update", "--package", pkg_id, "--precise", "0.15.6"], check=True)
230-
elif pkg["name"] == "parking_lot" and pkg["version"] != "0.11.2":
231-
subprocess.run(["cargo", "update", "--package", pkg_id, "--precise", "0.11.2"], check=True)
232-
elif pkg["name"] == "once_cell" and pkg["version"] != "1.14.0":
233-
subprocess.run(["cargo", "update", "--package", pkg_id, "--precise", "1.14.0"], check=True)
234227
working-directory: examples/simple
235228
shell: python
236229
- name: Test example

0 commit comments

Comments
 (0)