11 lines
688 B
Text
11 lines
688 B
Text
# The environment of the zone's python scripts (one of them today: measure.py). A pin and not
|
|
# "install Pillow": measuring the surfaces is a norm of the acceptance, and it is bound to reproduce
|
|
# from version to version.
|
|
#
|
|
# python3 -m venv .tooling/py && .tooling/py/bin/pip install -r scripts/requirements.txt
|
|
# .tooling/py/bin/python scripts/measure.py references/fleet_2.png
|
|
#
|
|
# .tooling/ is in .gitignore already — the environment lives next to Chromium and does not travel
|
|
# into the repository. The system python on the stand comes without Pillow and with PEP 668
|
|
# (externally-managed), hence a venv and not `pip install --user`: checked by execution 10.08.
|
|
pillow==12.3.0
|