This is designed to be run from scriptworker, but runs perfectly fine as a standalone script.
More details on what this script does can be found in RelEng docs.
README.md is the master readme, and README.rst is generated via
pandoc --from=markdown --to=rst README.md > README.rst
This is purely because
- @Callek prefers writing markdown, and
- pypi appears to deal with rst better than markdown.
For python version we use in production:
$ docker run -ti -v $PWD:/src -w /src python:3.7 /bin/bash
(docker) /src $ pip install pip-compile-multi
(docker) /src $ pip-compile-multi -g base -g test
For other python versions:
$ docker run -ti -v $PWD:/src -w /src python:3.6 /bin/bash
(docker) /src $ pip install pip-compile-multi
(docker) /src $ pip-compile-multi -g base -g test -o "py36.txt"