Skip to content

Commit

Permalink
Merge branch 'wms_fix_c_order_special_row'
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Jul 15, 2021
2 parents 2da2547 + 9ed7d02 commit b223316
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 8 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build Wheels

on:
push:
tags:
- '*'
env:
CIBW_SKIP: cp27-* cp33-* cp34-* cp35-* pp27* pp36* pp37*

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

steps:
- uses: actions/checkout@v2

- name: Build wheels
uses: joerick/cibuildwheel@v1.10.0
# to supply options, put them in 'env', like:
env:
CIBW_BEFORE_BUILD: pip install oldest-supported-numpy

- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl
12 changes: 6 additions & 6 deletions cc3d.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cc3d.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ cimport numpy as cnp
import numpy as np
import time

__VERSION__ = '3.1.2'
__VERSION__ = '3.2.1'

cdef extern from "cc3d.hpp" namespace "cc3d":
cdef uint32_t* connected_components3d[T,U](
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def requirements():

setuptools.setup(
name="connected-components-3d",
version="3.2.0",
version="3.2.1",
setup_requires=['pbr', 'numpy'],
install_requires=['numpy'],
python_requires="~=3.6", # >= 3.6 < 4.0
Expand Down

0 comments on commit b223316

Please sign in to comment.