-
-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove manylinux tag #52
Conversation
Thanks! Let's find a way to test the release packages without spamming PyPI (e.g. https://test.pypi.org/) and document it for future uses. |
Hey @tholop - tried to use TestPyPI but did not succeed. Specifically, it wasn't clear to me how to use docker run --rm -v $(pwd):/io konstin2/maturin publish -b cffi --no-sdist -r https://test.pypi.org/legacy/ -u USERNAME -p PASSWORD --skip-auditwheel --manylinux 2014 I think the problem was due to this:
However, I never managed to upload anything, even after playing around with the project-url config in Any ideas? |
Opened this issue, as I believe the problem is not due to the config. |
Managed to publish with: docker run --rm -v $(pwd):/io konstin2/maturin publish -b cffi --no-sdist -r https://test.pypi.org/legacy/ -u USERNAME -p PASSWORD --manylinux 2014 As was suggested here, we might want to use a GH Actions workflow to compile the wheel that we're interested in. |
Update: Managed to build and publish package for aarch architecture as follows:
docker run --rm -it -v $(pwd):/home/rust/src messense/manylinux_2_24-cross:aarch64
curl https://sh.rustup.rs -sSf | bash -s -- -y
echo 'source $HOME/.cargo/env' >> $HOME/.bashrc
source $HOME/.cargo/env
rustup target add aarch64-unknown-linux-gnu
maturin publish -b cffi --no-sdist -r https://test.pypi.org/legacy/ -u USER -p PASSWORD --manylinux 2014 I think we can just modify the docker image so as to run the last command in a GH Actions workflow. WDYT? |
Description
This change will allow us to publish the package within a docker container.
Affected Dependencies
How has this been tested?
Tested locally.
Checklist