Skip to content

Commit

Permalink
Install gmpy2 in workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmtroffaes committed Dec 16, 2024
1 parent 2db69d5 commit 75ff6ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
if: matrix.os == 'macos-latest'
run: brew install cddlib gmp
- name: Install Python dependencies
run: python -m pip install setuptools Cython Sphinx pytest wheel numpy mypy
run: python -m pip install setuptools Cython Sphinx pytest wheel numpy gmpy2 mypy
- name: Install tarball (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: python -m pip install $(ls dist/*.tar.gz | head -1)
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
python --version
python -c "import struct; print(struct.calcsize('P') * 8)"
- name: Install Python dependencies
run: python -m pip install Sphinx pytest numpy twine wheel build mypy
run: python -m pip install Sphinx pytest numpy gmpy2 twine wheel build mypy
- name: Create wheel (Windows)
if: matrix.os == 'windows-latest'
run: |
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ keywords = ["convex, polyhedron, linear programming, double description method"]
test = [
"pytest",
"numpy",
"gmpy2",
"mypy",
"black",
"isort",
Expand Down

0 comments on commit 75ff6ab

Please sign in to comment.