Skip to content

Commit c1831f5

Browse files
Fix include dir
1 parent f3b8e9b commit c1831f5

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,6 @@ jobs:
142142
env:
143143
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}
144144
run: |
145-
dir D:\a\FindAFactor\FindAFactor\boost\boost
146-
dir D:\a\FindAFactor\FindAFactor\boost\boost\include
147-
dir D:\a\FindAFactor\FindAFactor\boost\boost\include\boost
148-
dir D:\a\FindAFactor\FindAFactor\boost\boost\include\boost-1_87
149145
python setup.py bdist_wheel --plat-name=${{ matrix.platform }}
150146
151147
- name: Upload Artifacts

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
'_find_a_factor',
1414
["FindAFactor/_find_a_factor.cpp", "FindAFactor/dispatchqueue.cpp"],
1515
include_dirs=['FindAFactor/include', 'pybind11/include', '/usr/local/include', '/opt/homebrew/include',
16-
(os.environ.get('BOOST_ROOT') if os.environ.get('BOOST_ROOT') else 'C:/boost') + '\\include'],
16+
(os.environ.get('BOOST_ROOT') if os.environ.get('BOOST_ROOT') else 'C:\\boost') + '\\include\\boost'],
1717
language='c++',
1818
extra_compile_args = cpp_args,
1919
),

0 commit comments

Comments
 (0)