Skip to content
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: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
.DEFAULT_GOAL := help

PYTHONPATH=
# Depending on how the Python interpreter was built and whether PYTHONSAFEPATH
# is set the current working directory may not be on sys.path. It is especially
# problematic if PYTHONSAFEPATH is set in rc files that load in every subshell
# since this repository launches each query in a subshell. To get around such
# problems, we add the current directory to PYTHONPATH unconditionally,
# bypassing any dependence on the default values in sys.path.
export PYTHONPATH := $(PWD):$(PYTHONPATH)
SHELL=/bin/bash
VENV=.venv
VENV_BIN=$(VENV)/bin
Expand Down
Loading