summaryrefslogtreecommitdiff
path: root/.github/workflows/pip-packaging-osx.yml
diff options
context:
space:
mode:
authorVincent Rouvreau <vincent.rouvreau@inria.fr>2022-01-04 13:44:26 +0100
committerVincent Rouvreau <vincent.rouvreau@inria.fr>2022-01-04 13:44:26 +0100
commit890f598e784ea8b6cd417c2a949326b4e2028fe5 (patch)
tree7eec12b832ec7882d8a3053e8f42ae803402456d /.github/workflows/pip-packaging-osx.yml
parent4cef95eb986dfaaf70aaae7da630db987639b491 (diff)
python 3.10 package and test also gudhi version - can be helpful
Diffstat (limited to '.github/workflows/pip-packaging-osx.yml')
-rw-r--r--.github/workflows/pip-packaging-osx.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/pip-packaging-osx.yml b/.github/workflows/pip-packaging-osx.yml
index 120c15b6..98a77a80 100644
--- a/.github/workflows/pip-packaging-osx.yml
+++ b/.github/workflows/pip-packaging-osx.yml
@@ -10,7 +10,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
- python-version: ['3.5', '3.6', '3.7', '3.8', '3.9']
+ python-version: ['3.5', '3.6', '3.7', '3.8', '3.9', '3.10']
name: Build wheels for Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v1
@@ -37,6 +37,7 @@ jobs:
- name: Install and test python wheel
run: |
python -m pip install --user pytest build/src/python/dist/*.whl
+ python -c "import gudhi; print(gudhi.__version__)"
python -m pytest src/python/test/test_alpha_complex.py
- name: Publish on PyPi
env: