Skip to content

Commit d1aced3

Browse files
committed
clean up
1 parent 8951cdc commit d1aced3

File tree

3 files changed

+14
-31
lines changed

3 files changed

+14
-31
lines changed

.github/workflows/build-wheels-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ jobs:
116116
runs-on: ubuntu-latest
117117
needs: [build_wheels, build_sdist]
118118

119-
# upload to pypi on every tag starting with 'v'
120-
if: github.event_name == 'push' && startswith(github.ref, 'refs/tags/v')
119+
# upload to PyPI on every tag starting with 'v'
120+
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
121121

122122
environment:
123123
name: pypi

BUILD.bazel

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -117,16 +117,6 @@ cc_library(
117117
],
118118
)
119119

120-
# config_setting(
121-
# name = "on_windows",
122-
# constraint_values = ["@platforms//os:windows"],
123-
# )
124-
125-
# config_setting(
126-
# name = "on_linux",
127-
# constraint_values = ["@platforms//os:linux"],
128-
# )
129-
130120
TEST_NAMES = [
131121
"TestAlienBasis",
132122
"TestBasis",
@@ -166,13 +156,7 @@ TEST_NAMES = [
166156
"TestSort",
167157
"TestSpecialLps",
168158
"TestThrow",
169-
]
170-
171-
# PLATFORM_DEPENDENT_TESTS = select({
172-
# "on_linux": ["TestLpSolvers.cpp"],
173-
# "on_windows": ["TestLpSolvers.cpp"],
174-
# "//conditions:default": [],
175-
# })
159+
]
176160

177161
[cc_test(
178162
name = name,
@@ -187,4 +171,3 @@ TEST_NAMES = [
187171
":test_lib",
188172
],
189173
) for name in TEST_NAMES]
190-

pyproject.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"Bug Tracker" = "https://github.com/ERGO-Code/HiGHS/issues"
44

55
[build-system]
6-
requires = ["numpy", "pybind11", "scikit-build-core>=0.3.3"]
6+
requires = ["scikit-build-core>=0.3.3", "pybind11", "numpy"]
77
build-backend = "scikit_build_core.build"
88

99
[project]
@@ -54,21 +54,21 @@ sdist.include = [
5454
"LICENSE",
5555
"README.md",
5656
"src/HConfig.h.in",
57-
"src/",
58-
"external/",
59-
"cmake/",
57+
"src",
58+
"external",
59+
"cmake",
6060
]
6161

6262
sdist.exclude = [
6363
".github",
6464
".gitattributes",
6565
".gitignore",
6666
".github",
67-
"app/",
68-
"build/",
69-
"check/",
70-
"docs/",
71-
"subprojects/",
67+
"app",
68+
"build",
69+
"check",
70+
"docs",
71+
"subprojects",
7272
".coin-or",
7373
"build_webdemo.sh",
7474
".clang-format",
@@ -98,11 +98,11 @@ sdist.exclude = [
9898
# # The versions of Ninja to allow. If Ninja is not present on the system or does
9999
# # not pass this specifier, it will be downloaded via PyPI if possible. An empty
100100
# # string will disable this check.
101-
ninja.version = ">=1.5"
101+
# ninja.version = ">=1.5"
102102

103103
# # If Ninja is not present on the system or is older required, it will be
104104
# # downloaded via PyPI if possible. An empty string will disable this check.
105-
ninja.make-fallback = true
105+
# ninja.make-fallback = true
106106

107107
# # The logging level to display, "DEBUG", "INFO", "WARNING", and "ERROR" are
108108
# # possible options.

0 commit comments

Comments
 (0)