anki/pip
2020-12-17 10:57:44 +10:00
..
pyqt5 update qt to 5.12.2 2020-12-01 10:56:13 +10:00
BUILD.bazel dump pypi licenses of runtime deps 2020-11-12 20:03:41 +10:00
licenses.json dump pypi licenses of runtime deps 2020-11-12 20:03:41 +10:00
licenses.sh dump pypi licenses of runtime deps 2020-11-12 20:03:41 +10:00
README.md README updates 2020-11-03 09:03:00 +10:00
requirements.in add script to extract FTL strings 2020-11-19 11:26:09 +10:00
requirements.txt update python deps 2020-12-17 10:57:44 +10:00
update.py pin Python deps 2020-11-02 21:05:37 +10:00

To achieve reproducible builds we use pip-tools to lock packages to a particular version. Sadly this is complicated by the fact that Python can only tell us which transitive dependencies are required by actually installing packages, and if you run pip-tools on a Mac or Linux machine, it will miss packages that are required on Windows and vice versa.

So we're stuck manually merging dependencies for now. To update deps:

  • run 'bazel run update' to update requirements.txt for the current platform
  • consult the git diff, and manually merge the changes, undoing the removal of items pinned on other platforms
  • repeat the process on the other platform
  • run the tests to ensure nothing has broken on either platform
  • commit the changes to requirements.txt

At the time of writing, Macs and Linux machines have identical output - it is only Windows that differs. But we should not assume that will always be the case.