Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bump dill to >= 0.3.6, prevents tests hanging with python3.11 #7918

Merged
merged 4 commits into from Dec 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyproject.toml
Expand Up @@ -33,7 +33,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,
Expand Down
2 changes: 1 addition & 1 deletion requirements_test_pre_commit.txt
Expand Up @@ -2,7 +2,7 @@
# in .pre-commit-config.yaml
bandit==1.7.4
black==22.12.0
flake8==6.0.0
flake8>=5.0.0
flake8-bugbear==22.12.6
flake8-typing-imports==1.14.0
isort==5.10.1
Expand Down