Skip to content

Commit

Permalink
Extended range of supported versions of indexmap optional dependenc…
Browse files Browse the repository at this point in the history
…y to include version 2.
  • Loading branch information
adamreichold committed Jun 26, 2023
1 parent 7425206 commit b5a1ca0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ anyhow = { version = "1.0", optional = true }
chrono = { version = "0.4", default-features = false, optional = true }
eyre = { version = ">= 0.4, < 0.7", optional = true }
hashbrown = { version = ">= 0.9, < 0.15", optional = true }
indexmap = { version = "1.6", optional = true }
indexmap = { version = ">= 1.6, < 3", optional = true }
num-bigint = { version = "0.4", optional = true }
num-complex = { version = ">= 0.2, < 0.5", optional = true }
rust_decimal = { version = "1.0.0", default-features = false, optional = true }
Expand Down
1 change: 1 addition & 0 deletions newsfragments/3277.packaging.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Extended range of supported versions of `indexmap` optional dependency to include version 2.
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,7 @@ def set_minimal_package_versions(session: nox.Session):
"rayon-core": "1.10.2",
"regex": "1.7.3",
"proptest": "1.0.0",
"indexmap": "1.9.3",
}

# run cargo update first to ensure that everything is at highest
Expand Down

0 comments on commit b5a1ca0

Please sign in to comment.