Skip to content

[Backfill corrections] Fetch user-provided paths only at setup + increase pip timeout #1754

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions backfill_corrections/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ SHELL:=/bin/bash
OPTIONS=

PYTHON:=env/bin/python
USR_INPUT_DIR=$(shell $(PYTHON) -m delphi_utils get input_dir)
USR_CACHE_DIR=$(shell $(PYTHON) -m delphi_utils get cache_dir)
USR_EXPORT_DIR=$(shell $(PYTHON) -m delphi_utils get export_dir)
USR_INPUT_DIR:=$(shell $(PYTHON) -m delphi_utils get input_dir)
USR_CACHE_DIR:=$(shell $(PYTHON) -m delphi_utils get cache_dir)
USR_EXPORT_DIR:=$(shell $(PYTHON) -m delphi_utils get export_dir)

# Gurobi license
GRB_LICENSE_FILE=./gurobi.lic
Expand Down Expand Up @@ -53,7 +53,7 @@ install-python:
python3 -m venv env
source env/bin/activate && \
pip install wheel && \
pip install delphi_utils
pip install --timeout 1000 delphi_utils

lib:
R -e 'roxygen2::roxygenise("delphiBackfillCorrection")'
Expand Down