Skip to content

Commit

Permalink
Turn off win32 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
bryan-hunt committed May 12, 2021
1 parent 84cd6d5 commit 6152b14
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
with:
package-dir: python
env:
CIBW_SKIP: "*-win32"
CIBW_BUILD_VERBOSITY: 3

- uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

# Include the compiled library in the resulting distribution
_PACKAGE_DATA = {}
if sys.platform is 'win32':
if sys.platform == 'win32':
_PACKAGE_DATA['libcryptoauth'] = ['cryptoauth.dll']
#elif sys.platform is 'darwin':
else:
Expand Down

0 comments on commit 6152b14

Please sign in to comment.