Skip to content

Commit

Permalink
Release 1.2.0 (#23)
Browse files Browse the repository at this point in the history
* Adding IoU

* bumping version

* retrying builds
  • Loading branch information
zachcoleman authored Nov 9, 2022
1 parent 42bc367 commit 9657ac0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
24 changes: 14 additions & 10 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: messense/maturin-action@v1
with:
manylinux: auto
command: build
args: --release -o dist
args: --release --out dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -27,13 +27,13 @@ jobs:
if: github.event.pull_request.merged == true
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: messense/maturin-action@v1
with:
command: build
args: --release --no-sdist -o dist
args: --release --out dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -42,13 +42,13 @@ jobs:
if: github.event.pull_request.merged == true
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: messense/maturin-action@v1
with:
command: build
args: --release --no-sdist -o dist --universal2
args: --release --universal2 --out dist --find-interpreter
- name: Upload wheels
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -59,7 +59,11 @@ jobs:
# if: "startsWith(github.ref, 'refs/tags/')"
needs: [ macos, windows, linux ]
steps:
- uses: actions/download-artifact@v2
- uses: actions/setup-python@v4
with:
python-version: 3.9
architecture: x64
- uses: actions/download-artifact@v3
with:
name: wheels
- name: Publish to PyPI
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions-rs/toolchain@v1
Expand All @@ -28,4 +28,4 @@ jobs:
- name: Test with pytest
run: |
source .venv/bin/activate
python -m pytest
python -m pytest

0 comments on commit 9657ac0

Please sign in to comment.