-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Complete packaging support (using manylinux)
See RELEASING.md for steps to release a new pygrgl version.
- Loading branch information
Showing
5 changed files
with
40 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
FROM quay.io/pypa/manylinux_2_28_x86_64 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/bash | ||
|
||
set -ev | ||
|
||
cd /io | ||
|
||
# Build the source distribution | ||
/opt/python/cp38-cp38/bin/python setup.py sdist | ||
|
||
echo "Building for Python 3.8" | ||
GRGL_GSL=1 GRGL_BGEN=1 /opt/python/cp38-cp38/bin/python setup.py bdist_wheel | ||
echo "Building for Python 3.9" | ||
GRGL_GSL=1 GRGL_BGEN=1 /opt/python/cp39-cp39/bin/python setup.py bdist_wheel | ||
echo "Building for Python 3.10" | ||
GRGL_GSL=1 GRGL_BGEN=1 /opt/python/cp310-cp310/bin/python setup.py bdist_wheel | ||
echo "Building for Python 3.11" | ||
GRGL_GSL=1 GRGL_BGEN=1 /opt/python/cp311-cp311/bin/python setup.py bdist_wheel | ||
echo "Building for Python 3.12" | ||
GRGL_GSL=1 GRGL_BGEN=1 /opt/python/cp312-cp312/bin/python setup.py bdist_wheel | ||
|
||
cd /io/dist | ||
auditwheel repair --plat manylinux_2_24_x86_64 pygrgl-1.1-cp38-cp38-linux_x86_64.whl | ||
auditwheel repair --plat manylinux_2_24_x86_64 pygrgl-1.1-cp39-cp39-linux_x86_64.whl | ||
auditwheel repair --plat manylinux_2_24_x86_64 pygrgl-1.1-cp310-cp310-linux_x86_64.whl | ||
auditwheel repair --plat manylinux_2_24_x86_64 pygrgl-1.1-cp311-cp311-linux_x86_64.whl | ||
auditwheel repair --plat manylinux_2_24_x86_64 pygrgl-1.1-cp312-cp312-linux_x86_64.whl |