Skip to content

Commit

Permalink
v0.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
hspark1212 committed Nov 28, 2023
0 parents commit a79480e
Show file tree
Hide file tree
Showing 31 changed files with 244,325 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build and upload to PyPI

on: [push, pull_request]

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-11, windows-2019]

steps:
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
# Build wheels for CPython only, skipping PyPy
CIBW_BUILD: "cp*"
CIBW_SKIP: "*-pp*"

- uses: actions/upload-artifact@v3
with:
name: artifact-name
path: ./wheelhouse/*.whl
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
__pycache__
*pyc
demo*

# Distribution / packaging
.python
build/
dist/
eggs/
wheelhouse/
*.egg-info/
*.egg
wheelhouse/
*.so
*.c

# Version control
*_old
Loading

0 comments on commit a79480e

Please sign in to comment.