Marc Cataford
a737e954aa
* build(deps): refactor dependency metadata to live in pyproject.toml * build(test): wait once after successful status to ensure DB is ready
6 lines
244 B
Bash
6 lines
244 B
Bash
#!/bin/bash
|
|
|
|
PYTHON=.venv/bin/python
|
|
|
|
$PYTHON -m piptools compile -o requirements.txt pyproject.toml --no-header \
|
|
&& $PYTHON -m piptools compile -o requirements_dev.txt --no-header --extra dev --constraint requirements.txt pyproject.toml
|