Skip to content

Commit de30361

Browse files
authored
Merge pull request #9696 [BEAM-8324] Restrict the upper bound for dill due to incompatibility between versions 0.3.0 and 0.3.1.1.
2 parents a707a11 + 71bb726 commit de30361

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sdks/python/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ def get_version():
105105
'avro>=1.8.1,<2.0.0; python_version < "3.0"',
106106
'avro-python3>=1.8.1,<2.0.0; python_version >= "3.0"',
107107
'crcmod>=1.7,<2.0',
108-
'dill>=0.2.9,<0.4.0',
108+
# Dill doesn't guarantee comatibility between releases within minor version.
109+
'dill>=0.3.0,<0.3.1',
109110
'fastavro>=0.21.4,<0.22',
110111
'funcsigs>=1.0.2,<2; python_version < "3.0"',
111112
'future>=0.16.0,<1.0.0',

0 commit comments

Comments
 (0)