Skip to content
Snippets Groups Projects
Commit bdc134d6 authored by nimrod's avatar nimrod
Browse files

PEP 621 style virtualenv.

parent 6c3ce08a
No related branches found
No related tags found
No related merge requests found
.envrc 0 → 100644
PYTHON_VERSION="$(python3 -c 'from sys import version_info as v; print(f"{v[0]}.{v[1]}")')"
export PYTHONPATH="$PWD/__pypackages__/$PYTHON_VERSION:${PYTHONPATH:-}"
export PATH="$PWD/__pypackages__/$PYTHON_VERSION/bin:$PATH"
python3 -m pip install -t "__pypackages__/$PYTHON_VERSION" -e .
...@@ -3,3 +3,4 @@ include *.txt ...@@ -3,3 +3,4 @@ include *.txt
exclude .pre-commit-config.yaml exclude .pre-commit-config.yaml
exclude .gitlab-ci.yml exclude .gitlab-ci.yml
exclude .gitignore exclude .gitignore
exclude .env*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment