diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c047f6d2f..2e2ea99e8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,6 +49,7 @@ jobs: with: package-dir: python env: + CIBW_SKIP: "*-win32" CIBW_BUILD_VERBOSITY: 3 - uses: actions/upload-artifact@v2 diff --git a/python/setup.py b/python/setup.py index 296f23945..b3d550f92 100644 --- a/python/setup.py +++ b/python/setup.py @@ -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: