Build extension in python submodule
I believe this is a good compromise! It's possible to build the extension in a submodule i.e.
ducc.ducc_0_1_0
and then in the main init.py file
from ducc.ducc_0_1_0 import (fft, wgridder, ...)
Step 1. Fetch and check out the branch for this merge request
git fetch "https://gitlab.mpcdf.mpg.de/g-simonperkins/ducc.git" "build-extension-in-submodule" git checkout -b "g-simonperkins/ducc-build-extension-in-submodule" FETCH_HEAD
Step 2. Review the changes locally
Step 3. Merge the branch and fix any conflicts that come up
git fetch origin git checkout "ducc_0_1" git merge --no-ff "g-simonperkins/ducc-build-extension-in-submodule"
Step 4. Push the result of the merge to GitLab
git push origin "ducc_0_1"
Note that pushing to GitLab requires write access to this repository.
Tip: You can also checkout merge requests locally by following these guidelines.
I believe this is a good compromise! It's possible to build the extension in a submodule i.e.
ducc.ducc_0_1_0
and then in the main init.py file
from ducc.ducc_0_1_0 import (fft, wgridder, ...)