Files
ortools-clone/bazel/BUILD.bazel

56 lines
1.7 KiB
Python
Raw Normal View History

2022-06-20 18:27:09 +02:00
# Copyright 2010-2022 Google LLC
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2023-02-11 09:56:03 -08:00
load("@rules_python//python:pip.bzl", "compile_pip_requirements")
2017-04-20 14:21:27 +02:00
exports_files([
"gtest.BUILD",
"glpk.BUILD",
"pcre2.BUILD",
"pcre2.patch",
2021-11-21 19:29:35 +01:00
"re2.patch",
2020-06-30 12:21:14 +02:00
"scip.BUILD",
2020-06-30 20:24:06 +02:00
"scip.patch",
"swig.BUILD",
"swig.patch",
"bliss.BUILD",
"bliss-0.73.patch",
2020-06-30 12:21:14 +02:00
"archive_helper.bzl",
2023-02-11 09:56:03 -08:00
"notebook_requirements.in",
"notebook_requirements.txt",
"ortools_requirements.in",
"ortools_requirements.txt",
2017-04-20 14:21:27 +02:00
])
2023-02-11 09:56:03 -08:00
compile_pip_requirements(
name = "ortools_requirements",
requirements_in = "ortools_requirements.in",
requirements_txt = "ortools_requirements.txt",
2023-08-11 13:21:02 +02:00
extra_args = [
"--allow-unsafe", # Pin packages considered unsafe
"--resolver=backtracking", # Avoid warning, new default
],
generate_hashes = False,
2023-02-11 09:56:03 -08:00
)
compile_pip_requirements(
name = "notebook_requirements",
requirements_in = "notebook_requirements.in",
requirements_txt = "notebook_requirements.txt",
2023-08-11 13:21:02 +02:00
extra_args = [
"--allow-unsafe", # Pin packages considered unsafe
"--resolver=backtracking", # Avoid warning, new default
],
generate_hashes = False,
2023-02-11 09:56:03 -08:00
)