From 83668de8080a8adf2393dcda826100c6dba8267c Mon Sep 17 00:00:00 2001 From: Sandro Tosi Date: Wed, 14 Dec 2022 13:43:59 -0500 Subject: [PATCH] fix: bump dill to >= 0.3.6, prevents tests hanging with python3.11 (#7918) Co-authored-by: Pierre Sassoulas --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 90153e9de0..29551fda0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,8 @@ classifiers = [ ] requires-python = ">=3.7.2" dependencies = [ - "dill>=0.2", + "dill>=0.2;python_version<'3.11'", + "dill>=0.3.6;python_version>='3.11'", "platformdirs>=2.2.0", # Also upgrade requirements_test_min.txt. # Pinned to dev of second minor update to allow editable installs and fix primer issues,