* Drop nox in favor of vanilla scripts * Use named stages * Fix attrs dependency resolution madness * Add missing mkautodoc dev dependency * Add missing install step on windows build * Explicitly define stage order so that timed out Windows build runs last * Add missing dev dependency on Black * Clean up contributing guide * Separate docs into docs-build and docs-serve
16 lines
273 B
Bash
Executable File
16 lines
273 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export PREFIX="venv/bin/"
|
|
|
|
set -x
|
|
|
|
python -m venv venv
|
|
${PREFIX}python -m pip install -U pip
|
|
${PREFIX}python -m pip install -r requirements.txt
|
|
|
|
set +x
|
|
|
|
echo
|
|
echo "Success! You can now activate your virtual environment using:"
|
|
echo "source ${PREFIX}activate"
|