Jean-Christophe Morin
Jean-Christophe Morin
Hi @foundry-markf ! Thanks for the report. I did notice this in the past while working on the Windows wheels and completely forgot to create an issue for this. Feel...
That's alright. We are in no rush I think. But if you would prefer to see this fix soon, I can probably push a PR this weekend. Just let me...
My opinion is we shouldn't upload debug wheels in PyPI. It's such a rare scenario that I don't think it's worth the effort on our side and the storage utilization...
>In pyaaf2 I write all test results to known location instead of temp. I also don't delete them so you can inspect them if a failure happens. If we were...
Hi @pedrolabonia , editable installs are not working for now in OTIO due to the uncommon source files layout that OTIO uses. The problem is that the `.egg-link` points to...
`pip install .` should just work, but you'll have to `pip uninstall opentimelineio` to remove the artifacts installed when running `pip install -e .`. > I might be confused here,...
The other way is to simply copy the `.so` into `src/py-opentimelineio/opentimelineio` and add `src/py-opentimelineio` to your `PYTHONPATH`. 1. `python setup.py build_ext` 2. Copy copy the `.so`s into `src/py-opentimelineio/opentimelineio` 3. Set...
Obviously I'd really like to get the editable installs work, but we'll have to do research and it's possible that there is no solution for extensions right now.
I personally don't think it should go into the contributing guide. It's way too hacky. I also wouldn't add this solution to the `setup.py` script because it wouldn't work for...
@visajshah GitHub supports what's called draft PRs, see https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/changing-the-stage-of-a-pull-request#converting-a-pull-request-to-a-draft. This let's everyone know that a PR is WIP without relying on the title.