From ce67fe5ca4ed20f4866ef5b6ef382aff784a47e6 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Thu, 5 Dec 2019 23:40:24 +0100 Subject: [PATCH 1/2] Move venv inside of repo. Or: Avoid polluting everyone's home with our venv. --- .gitignore | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 288948351..20436578f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ venv/ .idea/ .DS_Store +venv/ diff --git a/Makefile b/Makefile index 40c417d96..4aded1c4c 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ CPYTHON_CLONE := ../cpython/ SPHINX_CONF := $(CPYTHON_CLONE)/Doc/conf.py LANGUAGE := fr -VENV := ~/.venvs/python-docs-i18n/ +VENV := $(shell pwd)/venv/ PYTHON := $(shell which python3) MODE := html BRANCH = 3.8 From 4ada32199be6a9fcc2b77e3249e23bcb008bb922 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Thu, 5 Dec 2019 23:48:31 +0100 Subject: [PATCH 2/2] lol --- .gitignore | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitignore b/.gitignore index 20436578f..288948351 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,3 @@ venv/ .idea/ .DS_Store -venv/