Skip to content

Commit

Permalink
fixing minor typo
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-dixon committed May 9, 2024
1 parent b0007da commit a301869
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,9 @@ jobs:
if: runner.os == 'Windows'
env:
UDA_DIR: ${{github.workspace}}\install
EXTLIB_INSTALL_DIR: ${{github.workspace}}\extlib\install
run: >
gcm python3 &&
(gcm python3).Path &&
python3 -m venv ${{github.workspace}}/venv &&
ls ${{github.workspace}}/venv &&
${{github.workspace}}/venv/Scripts/Activate.ps1 &&
Expand Down
4 changes: 2 additions & 2 deletions source/wrappers/python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ else:
stalib_ext = 'a'
dynlib_ext = '.dll'
extra_compile_args = ['/-std:c++17']
extlib = os.environ.get("EXTLIB_DIR")
extra_includes = [os.path.join(extlib, "install", "include")]
extlib = os.environ.get("EXTLIB_INSTALL_DIR")
extra_includes = [os.path.join(extlib, "include")]


uda_lib_names = '@UDA_LIBS@'.split(';') if '@UDA_LIBS@' else []
Expand Down

0 comments on commit a301869

Please sign in to comment.