Skip to content

Commit 979952a

Browse files
committed
hard-code dependency versions so they're installed when deployed to spark
1 parent 6317e7f commit 979952a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

entire_vds_pipeline.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
#!/usr/bin/env python
2+
3+
import pip
4+
for dependency in ['six==1.10.0', 'elasticsearch==5.4.0', 'requests==2.13.0']:
5+
pip.main(['install', dependency])
6+
27
import argparse
38
import json
49
import logging
510
import requests
611
import time
7-
from pprint import pprint, pformat
12+
from pprint import pprint
813

914
from utils.add_gnomad_coverage import add_gnomad_exome_coverage_to_vds, \
1015
add_gnomad_genome_coverage_to_vds

0 commit comments

Comments
 (0)