]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40669: Use requirements.pip when installing PEG dependencies (GH-20194)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 19 May 2020 02:31:28 +0000 (19:31 -0700)
committerGitHub <noreply@github.com>
Tue, 19 May 2020 02:31:28 +0000 (19:31 -0700)
(cherry picked from commit 3764069f3ba2a7e932837ae19265059339dc86e3)

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Tools/peg_generator/Makefile

index 7b33a86b24a8b2771ed3468a0b2795a0b786d8a6..34763b543c23b803d78440ba2efeeae9ff7048e3 100644 (file)
@@ -46,7 +46,7 @@ regen-metaparser: pegen/metagrammar.gram pegen/*.py
 venv:
        $(PYTHON) -m venv $(VENVDIR)
        $(VENVPYTHON) -m pip install -U pip setuptools
-       $(VENVPYTHON) -m pip install -U memory_profiler
+       $(VENVPYTHON) -m pip install -r requirements.pip
        @echo "The venv has been created in the $(VENVDIR) directory"
 
 test: run