Skip to content

Commit

Permalink
bootstrap.sh: use Python 3.
Browse files Browse the repository at this point in the history
Actually: removed `bootstrap.sh` and renamed `bootstrap-py3.sh` to `bootstrap.sh`.
  • Loading branch information
mauritsvanrees committed Jan 3, 2023
1 parent dd46e75 commit c33922c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
7 changes: 0 additions & 7 deletions bootstrap-py3.sh

This file was deleted.

8 changes: 4 additions & 4 deletions bootstrap.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

# see https://community.plone.org/t/not-using-bootstrap-py-as-default/620
rm -r ./lib ./include ./local ./bin
virtualenv --clear .
./bin/pip install -r requirements.txt
./bin/buildout
# rm -r ./lib ./include ./local ./bin
python3 -m venv venv --clear
./venv/bin/pip install -r requirements.txt
./venv/bin/buildout bootstrap

0 comments on commit c33922c

Please sign in to comment.