Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PlaceRouteHierFlow/thirdparty/boost.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if (NOT TARGET Boost::boost)
message(STATUS "Boost not found on host system. Downloading headers.")
FetchContent_Declare(
boost
URL https://boostorg.jfrog.io/artifactory/main/release/1.75.0/source/boost_1_75_0.tar.bz2
URL https://archives.boost.io/release/1.75.0/source/boost_1_75_0.tar.bz2
URL_HASH SHA256=953db31e016db7bb207f11432bef7df100516eeb746843fa0486a222e3fd49cb
)
FetchContent_GetProperties(boost)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def align_manifest_filter(cmake_manifest):
code_coverage = os.environ.get('CODE_COVERAGE', None)
if code_coverage and code_coverage == 'ON':
cmake_args.append("-DCODE_COVERAGE=ON")
cmake_args.append("-DCMAKE_POLICY_VERSION_MINIMUM=3.5")

# if devmode and not any(x.startswith('-DBUILD_TESTING') for x in sys.argv):
# cmake_args.append('-DBUILD_TESTING=ON')
Expand Down Expand Up @@ -99,8 +100,7 @@ def align_manifest_filter(cmake_manifest):
'dash',
'typing_extensions; python_version<"3.8"',
'memory_profiler',
'flatdict',
'mip'
'flatdict'
],
extras_require={
'test': [
Expand Down