mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00

- use a single script for all PyQt versions - add hashes - add a new ./run-qt5.14 script for testing with PyQt5.14
10 lines
561 B
Markdown
10 lines
561 B
Markdown
We handle PyQt specially for a few reasons:
|
|
|
|
- It ships with a few issues in its .pyi files that we want to correct.
|
|
- Bazel's Python tools install each package in a separate folder, but the
|
|
various PyQt packages expect to be installed in the same location, and
|
|
will give runtime linking issues when they are split up.
|
|
|
|
To update the version lock file, change to the folder with requirements.in,
|
|
modify the file, and then run "bazel run //python:update". PyQt does not
|
|
depend on platform-specific packages, so the update can be run on any platform.
|