mirror of
https://github.com/edgewall/trac.git
synced 2026-02-05 18:45:55 +01:00
git-svn-id: http://trac.edgewall.org/intertrac/log:/branches/1.6-stable@17923 af82e41b-90c4-0310-8c96-b1721e28e2e2
12 lines
222 B
Bash
Executable File
12 lines
222 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -ex
|
|
|
|
venvdir="$HOME/venv"
|
|
python -m venv "$venvdir"
|
|
. "$venvdir/bin/activate"
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements-release.txt
|
|
pip install setuptools-git
|
|
make compile sdist wheel
|