Skip to content

Commit 3d2581f

Browse files
authored
Merge pull request #1754 from cmu-delphi/ndefries/backcorr-eval-vars-once-timeout
[Backfill corrections] Fetch user-provided paths only at setup + increase pip timeout
2 parents 7d26143 + 6e7df34 commit 3d2581f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

backfill_corrections/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ SHELL:=/bin/bash
55
OPTIONS=
66

77
PYTHON:=env/bin/python
8-
USR_INPUT_DIR=$(shell $(PYTHON) -m delphi_utils get input_dir)
9-
USR_CACHE_DIR=$(shell $(PYTHON) -m delphi_utils get cache_dir)
10-
USR_EXPORT_DIR=$(shell $(PYTHON) -m delphi_utils get export_dir)
8+
USR_INPUT_DIR:=$(shell $(PYTHON) -m delphi_utils get input_dir)
9+
USR_CACHE_DIR:=$(shell $(PYTHON) -m delphi_utils get cache_dir)
10+
USR_EXPORT_DIR:=$(shell $(PYTHON) -m delphi_utils get export_dir)
1111

1212
# Gurobi license
1313
GRB_LICENSE_FILE=./gurobi.lic
@@ -53,7 +53,7 @@ install-python:
5353
python3 -m venv env
5454
source env/bin/activate && \
5555
pip install wheel && \
56-
pip install delphi_utils
56+
pip install --timeout 1000 delphi_utils
5757

5858
lib:
5959
R -e 'roxygen2::roxygenise("delphiBackfillCorrection")'

0 commit comments

Comments
 (0)