From b281a6cc08425f555edaf9e6f133b6511cc32ca4 Mon Sep 17 00:00:00 2001 From: David Hewitt <1939362+davidhewitt@users.noreply.github.com> Date: Tue, 24 Oct 2023 21:50:10 +0100 Subject: [PATCH] ci: use older hashbrown and indexmap for MSRV --- noxfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noxfile.py b/noxfile.py index c49df1d8..3aaf4656 100644 --- a/noxfile.py +++ b/noxfile.py @@ -498,8 +498,8 @@ def set_minimal_package_versions(session: nox.Session): min_pkg_versions = { "rust_decimal": "1.26.1", "csv": "1.1.6", - "indexmap": "1.9.3", - "hashbrown": "0.12.3", + "indexmap": "1.6.2", + "hashbrown": "0.9.1", "log": "0.4.17", "once_cell": "1.17.2", "rayon": "1.6.1",