[Python-checkins] bpo-40669: Use requirements.pip when installing PEG dependencies (GH-20194)

Pablo Galindo webhook-mailer at python.org
Mon May 18 18:37:14 EDT 2020


https://github.com/python/cpython/commit/3764069f3ba2a7e932837ae19265059339dc86e3
commit: 3764069f3ba2a7e932837ae19265059339dc86e3
branch: master
author: Pablo Galindo <Pablogsal at gmail.com>
committer: GitHub <noreply at github.com>
date: 2020-05-18T23:37:06+01:00
summary:

bpo-40669: Use requirements.pip when installing PEG dependencies (GH-20194)

files:
M Tools/peg_generator/Makefile

diff --git a/Tools/peg_generator/Makefile b/Tools/peg_generator/Makefile
index 7b33a86b24a8b..34763b543c23b 100644
--- a/Tools/peg_generator/Makefile
+++ b/Tools/peg_generator/Makefile
@@ -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



More information about the Python-checkins mailing list