diff --git a/changelog.d/20241205_121009_30907815+rjmello_bum_dill_v0_3_9.rst b/changelog.d/20241205_121009_30907815+rjmello_bum_dill_v0_3_9.rst new file mode 100644 index 000000000..fbd8a861a --- /dev/null +++ b/changelog.d/20241205_121009_30907815+rjmello_bum_dill_v0_3_9.rst @@ -0,0 +1,4 @@ +Changed +^^^^^^^ + +- Bumped ``dill`` dependency to version 0.3.9 for Python 3.11+. \ No newline at end of file diff --git a/compute_sdk/setup.py b/compute_sdk/setup.py index edfcabf66..112c4b42d 100644 --- a/compute_sdk/setup.py +++ b/compute_sdk/setup.py @@ -13,7 +13,7 @@ # pin to the latest version, as 'dill' is not at 1.0 and does not have a clear # versioning and compatibility policy 'dill==0.3.5.1;python_version<"3.11"', - 'dill==0.3.6;python_version>="3.11"', + 'dill==0.3.9;python_version>="3.11"', # typing_extensions, so we can use Protocol and other typing features on python3.7 'typing_extensions>=4.0;python_version<"3.8"', # packaging, allowing version parsing