| #!/bin/sh |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| set -ex |
|
|
| export TILEDB_PY_REPO="/opt/TileDB-Py" |
|
|
| |
| cd /home/tiledb |
| git clone $TILEDB_PY_REPO TileDB-Py37 |
| git -C TileDB-Py37 checkout $TILEDBPY_VERSION |
|
|
| cd /home/tiledb/TileDB-Py37 |
| /opt/python/cp37-cp37m/bin/python3.7 -m pip install -r misc/requirements_wheel.txt |
| /opt/python/cp37-cp37m/bin/python3.7 setup.py build_ext bdist_wheel --tiledb=/usr/local |
| auditwheel repair dist/*.whl |
| /opt/python/cp37-cp37m/bin/python3.7 -m pip install wheelhouse/*.whl |
| cd tiledb/tests |
| |
|
|
| |
| cd /home/tiledb |
| git clone $TILEDB_PY_REPO TileDB-Py38 |
| git -C TileDB-Py38 checkout $TILEDBPY_VERSION |
|
|
| cd /home/tiledb/TileDB-Py38 |
| /opt/python/cp38-cp38m/bin/python3.8 -m pip install -r misc/requirements_wheel.txt |
| /opt/python/cp38-cp38/bin/python3.8 setup.py build_ext bdist_wheel --tiledb=/usr/local |
| auditwheel repair dist/*.whl |
| /opt/python/cp38-cp38/bin/python3.8 -m pip install wheelhouse/*.whl |
| cd tiledb/tests |
|
|
| |
| cd /home/tiledb |
| git clone $TILEDB_PY_REPO TileDB-Py39 |
| git -C TileDB-Py39 checkout $TILEDBPY_VERSION |
|
|
| cd /home/tiledb/TileDB-Py39 |
| /opt/python/cp39-cp39m/bin/python3.9 -m pip install -r misc/requirements_wheel.txt |
| /opt/python/cp39-cp39/bin/python3.9 setup.py build_ext bdist_wheel --tiledb=/usr/local |
| auditwheel repair dist/*.whl |
| /opt/python/cp39-cp39/bin/python3.9 -m pip install wheelhouse/*.whl |
| cd tiledb/tests |
|
|
| |
| cd /home/tiledb |
| git clone $TILEDB_PY_REPO TileDB-Py310 |
| git -C TileDB-Py310 checkout $TILEDBPY_VERSION |
|
|
| cd /home/tiledb/TileDB-Py310 |
| /opt/python/cp310-cp310m/bin/python3.10 -m pip install -r misc/requirements_wheel.txt |
| /opt/python/cp310-cp310/bin/python3.10 setup.py build_ext bdist_wheel --tiledb=/usr/local |
| auditwheel repair dist/*.whl |
| /opt/python/cp310-cp310/bin/python3.10 -m pip install wheelhouse/*.whl |
| cd tiledb/tests |
|
|
| |
| cd /home/tiledb |
| git clone $TILEDB_PY_REPO TileDB-Py311 |
| git -C TileDB-Py311 checkout $TILEDBPY_VERSION |
|
|
| cd /home/tiledb/TileDB-Py311 |
| /opt/python/cp311-cp311m/bin/python3.11 -m pip install -r misc/requirements_wheel.txt |
| /opt/python/cp311-cp311/bin/python3.11 setup.py build_ext bdist_wheel --tiledb=/usr/local |
| auditwheel repair dist/*.whl |
| /opt/python/cp311-cp311/bin/python3.11 -m pip install wheelhouse/*.whl |
| cd tiledb/tests |
|
|
| |
| cp /home/tiledb/TileDB-Py37/wheelhouse/* /wheels |
| cp /home/tiledb/TileDB-Py38/wheelhouse/* /wheels |
| cp /home/tiledb/TileDB-Py39/wheelhouse/* /wheels |
| cp /home/tiledb/TileDB-Py310/wheelhouse/* /wheels |
| cp /home/tiledb/TileDB-Py311/wheelhouse/* /wheels |
|
|