Skip to content

Commit

Permalink
Merge pull request #36 from Stoops-ML/build
Browse files Browse the repository at this point in the history
Build
  • Loading branch information
Stoops-ML authored Oct 1, 2024
2 parents da9ab5f + c4a31a7 commit 7096ccc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,10 @@ jobs:
path: dist/

build_wheels:
name: Build wheels on ${{matrix.os}} 🎡
name: Build wheels on ${{matrix.os}} for Python `${{matrix.python-version}} 🎡
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
# os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
Expand All @@ -40,9 +41,9 @@ jobs:

- name: Build wheels 🎡
env:
CIBW_BUILD: "cp311-*"
# CIBW_BUILD: "cp311-*"
CIBW_SKIP: "pp* *-win32 *_i686"
uses: pypa/cibuildwheel@v2.20.0
uses: pypa/cibuildwheel@v2.21.1

- uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion src/transforms84/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
commit_hash = os.getenv("COMMIT_HASH", "")
if commit_hash: # pragma: no cover
commit_hash = f"+{commit_hash}"
__version__ = f"0.3.0{commit_hash}"
__version__ = f"0.3.1{commit_hash}"

0 comments on commit 7096ccc

Please sign in to comment.