Skip to content

Commit a2c5e2c

Browse files
committed
bugfix: hail wheel reference is local... does not work on dataproc
1 parent f5ae734 commit a2c5e2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

v03_pipeline/lib/tasks/dataproc/create_dataproc_cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
DEBIAN_IMAGE = '2.1.33-debian11'
1919
HAIL_VERSION = hl.version().split('-')[0]
2020
INSTANCE_TYPE = 'n1-highmem-8'
21-
PKGS = '|'.join(pip_freeze.freeze())
21+
PKGS = '|'.join([x for x in pip_freeze.freeze() if 'hail @' not in x])
2222
TIMEOUT_S = 900
2323

2424
logger = get_logger(__name__)

0 commit comments

Comments
 (0)