<aside> ⚠️ If you're developing on Review Board, this guide is for you.

If you're an end user looking for assistance, see our Knowledge Base and support options.

</aside>

Contributions

Q. Can I submit pull requests?

No. We require all submissions to be made through our Review Board server. You have to admit, it would be a bit odd to use anything else for code review 🙂

Troubleshooting

Q. I'm getting compiler errors on my M1 Mac.

If you're seeing something like:

.../python3.8/site-packages/_cffi_backend.cpython-38-darwin.so: mach-o, but wrong architecture

You probably have compiled cffi for the wrong architecture. To solve this:

  1. Uninstall cffi (pipX.Y uninstall cffi)
  2. Make sure that arch says arm64 (change it to arm64 if not)
  3. Force a reinstall using pipX.Y install --no-cache-dir cffi