Skip to content

Commit

Permalink
good, OSX deployment target 10.14 builds, and according to the docs i…
Browse files Browse the repository at this point in the history
…s the first version with full C++17 support, which we need. So lets try a new release with that
  • Loading branch information
dcnieho committed Jan 18, 2023
1 parent 0ce3792 commit 7a848b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest] #[ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest, windows-latest]

steps:
- uses: actions/checkout@v3
Expand All @@ -26,7 +26,7 @@ jobs:
with:
package-dir: SDK_wrapper
env:
CIBW_BUILD: cp*-manylinux_x86_64 cp38-macosx_x86_64 cp*-win_amd64
CIBW_BUILD: cp*-manylinux_x86_64 cp*-macosx_x86_64 cp*-win_amd64

CIBW_BEFORE_BUILD_WINDOWS: "pip install delvewheel"
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} --add-path .\\SDK_wrapper\\TittaMex\\64\\Windows {wheel}"
Expand Down
2 changes: 1 addition & 1 deletion SDK_wrapper/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# detect platform
isOSX = sys.platform.startswith("darwin")

__version__ = '1.0.0rc4'
__version__ = '1.0.0rc5'


class get_pybind_include(object):
Expand Down

0 comments on commit 7a848b0

Please sign in to comment.