summaryrefslogtreecommitdiff
path: root/.github/workflows/pip-packaging-linux.yml
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2022-12-12 09:25:32 +0100
committerGitHub <noreply@github.com>2022-12-12 09:25:32 +0100
commit60a18d8bd0aaf365fddf813406e53f927631688b (patch)
tree91d270cf5615cb2774a8bbb6c5898780e1ed550f /.github/workflows/pip-packaging-linux.yml
parent521d3aea630f0f4860d4d0a4ca0e70d1717ad994 (diff)
parent3a8e6e1f5641df481876cd4c1dfb3d66fb672964 (diff)
Merge pull request #765 from VincentRouvreau/python_3_11_for_pip
pip package for python 3.11
Diffstat (limited to '.github/workflows/pip-packaging-linux.yml')
-rw-r--r--.github/workflows/pip-packaging-linux.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/pip-packaging-linux.yml b/.github/workflows/pip-packaging-linux.yml
index 285cfa00..14b1cf7a 100644
--- a/.github/workflows/pip-packaging-linux.yml
+++ b/.github/workflows/pip-packaging-linux.yml
@@ -79,6 +79,19 @@ jobs:
$PYTHON310/bin/python -m pip install --user pytest build_310/src/python/dist/*.whl
$PYTHON310/bin/python -c "import gudhi; print(gudhi.__version__)"
$PYTHON310/bin/python -m pytest src/python/test/test_alpha_complex.py
+ - name: Build wheel for Python 3.11
+ run: |
+ mkdir build_311
+ cd build_311
+ cmake -DCMAKE_BUILD_TYPE=Release -DPYTHON_EXECUTABLE=$PYTHON311/bin/python ..
+ cd src/python
+ $PYTHON311/bin/python setup.py bdist_wheel
+ auditwheel repair dist/*.whl
+ - name: Install and test wheel for Python 3.11
+ run: |
+ $PYTHON311/bin/python -m pip install --user pytest build_311/src/python/dist/*.whl
+ $PYTHON311/bin/python -c "import gudhi; print(gudhi.__version__)"
+ $PYTHON311/bin/python -m pytest src/python/test/test_alpha_complex.py
- name: Publish on PyPi
env:
TWINE_USERNAME: __token__
@@ -89,3 +102,4 @@ jobs:
$PYTHON36/bin/python -m twine upload build_38/src/python/wheelhouse/*
$PYTHON36/bin/python -m twine upload build_39/src/python/wheelhouse/*
$PYTHON36/bin/python -m twine upload build_310/src/python/wheelhouse/*
+ $PYTHON36/bin/python -m twine upload build_311/src/python/wheelhouse/*