Skip to content

Commit 6d13723

Browse files
author
Matthew Fisher
authored
chore(Makefile): remove pyvenv script (#1161)
pyvenv has been deprecated in favour of `python3 -m venv`.
1 parent 62f081a commit 6d13723

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ postgres: check-docker
5151
@echo " export PGUSER=postgres"
5252

5353
setup-venv:
54-
@if [ ! -d venv ]; then pyvenv venv && source venv/bin/activate; fi
55-
pip install --disable-pip-version-check -q -r rootfs/requirements.txt -r rootfs/dev_requirements.txt
54+
python3 -m venv venv
55+
venv/bin/pip3 install --disable-pip-version-check -q -r rootfs/requirements.txt -r rootfs/dev_requirements.txt
5656

5757
test: test-style test-check test-unit test-functional
5858

0 commit comments

Comments
 (0)