Skip to content

Commit

Permalink
enable windows builds; add Library to LIB_GSL
Browse files Browse the repository at this point in the history
  • Loading branch information
mcflugen committed Jun 24, 2022
1 parent a12b3fa commit fe10f04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ jobs:

strategy:
matrix:
# os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"]

steps:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import os
import pathlib
import sys
from distutils.core import setup

import cython_gsl
import pkg_resources
from Cython.Distutils import Extension, build_ext

os.environ.setdefault("LIB_GSL", sys.prefix)
os.environ.setdefault("LIB_GSL", str(pathlib.Path(sys.prefix) / "Library"))


setup(
Expand Down

0 comments on commit fe10f04

Please sign in to comment.