Skip to content

Commit 5a93635

Browse files
fix: bump dill to >= 0.3.6, prevents tests hanging with python3.11 (#7918)
Co-authored-by: Pierre Sassoulas <[email protected]>
1 parent d042f72 commit 5a93635

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ classifiers = [
3333
]
3434
requires-python = ">=3.7.2"
3535
dependencies = [
36-
"dill>=0.2",
36+
"dill>=0.2;python_version<'3.11'",
37+
"dill>=0.3.6;python_version>='3.11'",
3738
"platformdirs>=2.2.0",
3839
# Also upgrade requirements_test_min.txt.
3940
# Pinned to dev of second minor update to allow editable installs and fix primer issues,

requirements_test_pre_commit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# in .pre-commit-config.yaml
33
bandit==1.7.4
44
black==22.12.0
5-
flake8==6.0.0
5+
flake8>=5.0.0
66
flake8-bugbear==22.12.6
77
flake8-typing-imports==1.14.0
88
isort==5.10.1

0 commit comments

Comments
 (0)