Skip to content

Commit d80d1dd

Browse files
committed
Fix indexmap pin as 2.7.0 was just released
I heard you like pins, so I pinned you pin so you can pin while you pin.
1 parent 12920d8 commit d80d1dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/ci-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ function PIN_RELEASE_DEPS {
1818
# Here we opt to keep using unicode-rs by pinning idna_adapter as described here: https://docs.rs/crate/idna_adapter/1.2.0
1919
[ "$RUSTC_MINOR_VERSION" -lt 67 ] && cargo update -p idna_adapter --precise "1.1.0" --verbose
2020

21-
# indexmap 2.6.0 upgraded to hashbrown 0.15, which unfortunately bumped their MSRV to rustc 1.65 with the 0.15.1 release
22-
[ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p indexmap@2.6.0 --precise "2.5.0" --verbose
21+
# indexmap 2.6.0 upgraded to hashbrown 0.15, which unfortunately bumped their MSRV to rustc 1.65 with the 0.15.1 release (and 2.7.0 was released since).
22+
[ "$RUSTC_MINOR_VERSION" -lt 65 ] && cargo update -p indexmap@2.7.0 --precise "2.5.0" --verbose
2323

2424
return 0 # Don't fail the script if our rustc is higher than the last check
2525
}

0 commit comments

Comments
 (0)