Skip to content

Commit c7b3990

Browse files
Fix CI require_beam maximum compatible dill version (#5212)
Fix CI require_beam dill maximum compatible version
1 parent 9e987a4 commit c7b3990

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def parse_flag_from_env(key, default=False):
7777

7878
# Beam
7979
require_beam = pytest.mark.skipif(
80-
not config.BEAM_AVAILABLE or config.DILL_VERSION >= version.parse("0.3.6"),
80+
not config.BEAM_AVAILABLE or config.DILL_VERSION >= version.parse("0.3.2"),
8181
reason="test requires apache-beam and a compatible dill version",
8282
)
8383

0 commit comments

Comments
 (0)