2025-01-10 11:33:35 +01:00
|
|
|
# Copyright 2010-2025 Google LLC
|
2022-06-20 18:27:09 +02:00
|
|
|
# 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([
|
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",
|
2024-12-02 13:47:30 +01:00
|
|
|
"scip-v920.patch",
|
2017-04-20 14:21:27 +02:00
|
|
|
])
|
2023-02-11 09:00:57 -08:00
|
|
|
|
2023-02-11 09:56:03 -08:00
|
|
|
compile_pip_requirements(
|
|
|
|
|
name = "ortools_requirements",
|
2023-08-11 13:21:02 +02:00
|
|
|
extra_args = [
|
2023-08-18 14:49:09 +02:00
|
|
|
"--allow-unsafe", # Pin packages considered unsafe
|
|
|
|
|
"--resolver=backtracking", # Avoid warning, new default
|
|
|
|
|
],
|
2023-08-11 13:21:02 +02:00
|
|
|
generate_hashes = False,
|
2023-08-18 14:49:09 +02:00
|
|
|
requirements_in = "ortools_requirements.in",
|
|
|
|
|
requirements_txt = "ortools_requirements.txt",
|
2023-02-11 09:56:03 -08:00
|
|
|
)
|
2023-02-11 09:00:57 -08:00
|
|
|
|
|
|
|
|
compile_pip_requirements(
|
|
|
|
|
name = "notebook_requirements",
|
2023-08-11 13:21:02 +02:00
|
|
|
extra_args = [
|
2023-08-18 14:49:09 +02:00
|
|
|
"--allow-unsafe", # Pin packages considered unsafe
|
|
|
|
|
"--resolver=backtracking", # Avoid warning, new default
|
2023-08-11 13:21:02 +02:00
|
|
|
],
|
|
|
|
|
generate_hashes = False,
|
2023-08-18 14:49:09 +02:00
|
|
|
requirements_in = "notebook_requirements.in",
|
|
|
|
|
requirements_txt = "notebook_requirements.txt",
|
2023-02-11 09:56:03 -08:00
|
|
|
)
|