Skip to content

Commit

Permalink
Merge pull request #51 from doublethefish/chore/upgrde_cibuildwheel
Browse files Browse the repository at this point in the history
Chore/upgrade cibuildwheel
  • Loading branch information
doublethefish committed Apr 4, 2023
2 parents bcca1c7 + b03f5c0 commit 034d0bf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/wheels.yml
Expand Up @@ -32,18 +32,24 @@ jobs:
needs: generate-wheels-matrix
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include: ${{ fromJson(needs.generate-wheels-matrix.outputs.include) }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Used to host cibuildwheel
- uses: actions/setup-python@v3

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.11.2

- name: Build wheels
uses: pypa/cibuildwheel@v2.12.0
with:
package-dir: ./
output-dir: ./wheelhouse

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl

2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -5,7 +5,7 @@ readme = "README.md"
# keywords = ["one", "two"]
# license = { text = "BSD 3-Clause License" }
# classifiers = ["Framework :: Django", "Programming Language :: Python :: 3"]
dependencies = ["matplotlib", "annoy ~= 1.17.0"]
dependencies = ["matplotlib", "annoy ~= 1.17.0", "scipy"]
dynamic = ["version"]
authors = [
{"name" = "Daniel Probst", "email" = "daenuprobst@gmail.com"},
Expand Down

0 comments on commit 034d0bf

Please sign in to comment.