Skip to content

Commit

Permalink
Trying to fix window sbuild
Browse files Browse the repository at this point in the history
* Update build.yml

* Update setup.py
  • Loading branch information
whitead committed Jan 16, 2024
1 parent 51514cd commit 6975256
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
#os: [ubuntu-20.04, windows-2019, macos-11] - cannot figure out how to get libm to work on windows
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-2019]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
Extension(
"molbloom.bloom",
["molbloom/bloom.pyx"],
libraries=[find_library("m") if os.name == "nt" else "m"],
libraries=[] if os.name == "nt" else ["m"],
include_dirs=["molbloom/bloom"],
)
]
Expand Down

0 comments on commit 6975256

Please sign in to comment.