Skip to content

Commit

Permalink
Try and remove the Python library from the linked dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jacquev6 committed Jul 15, 2024
1 parent 6d2f759 commit c26b1e5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Test building on GitHub Actions
on:
push:
branches:
- topics/test-gha
- test-gha/*
jobs:
build-for-linux:
runs-on: ubuntu-20.04
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ def make_liblincs_extension():
extra_link_args += ["-fopenmp"]
libraries += [
"ortools",
f"python{sys.version_info.major}.{sys.version_info.minor}",
]
if os.environ.get("LINCS_DEV_COVERAGE", "false") == "true":
extra_compile_args["c++"] += ["--coverage", "-O0"]
Expand All @@ -248,7 +247,6 @@ def make_liblincs_extension():
vc_version = os.environ.get("LINCS_DEV_VC_VERSION", "143")
libraries += [
"ortools",
f"python{sys.version_info.major}{sys.version_info.minor}",
]
elif sys.platform == "darwin":
extra_compile_args["c++"] = ["-std=c++17", "-Werror=switch", "-Xclang", "-fopenmp"]
Expand Down

0 comments on commit c26b1e5

Please sign in to comment.