From 4eca23f5697611ac7e3c459d872f327e85d9a8fc Mon Sep 17 00:00:00 2001 From: Greg Roodt Date: Tue, 28 Jun 2022 23:01:30 +1000 Subject: [PATCH] . --- README.md | 3 +-- experimental/BUILD | 16 ---------------- experimental/python/BUILD | 18 ------------------ experimental/python/wheel.bzl | 21 --------------------- 4 files changed, 1 insertion(+), 57 deletions(-) delete mode 100644 experimental/BUILD delete mode 100644 experimental/python/BUILD delete mode 100644 experimental/python/wheel.bzl diff --git a/README.md b/README.md index b553e09ebd..7359a2ae4e 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,7 @@ rate, but this repository will still follow [semantic versioning](https://semver.org). The packaging rules (`pip_install`, etc.) are less stable. We may make breaking -changes as they evolve. There are no guarantees for rules underneath the -`experimental/` directory. +changes as they evolve. This repository is maintained by the Bazel community. Neither Google, nor the Bazel team, provides support for the code. However, this repository is part of diff --git a/experimental/BUILD b/experimental/BUILD deleted file mode 100644 index a892ac193a..0000000000 --- a/experimental/BUILD +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 2018 The Bazel Authors. All rights reserved. -# -# 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. -package(default_visibility = ["//visibility:public"]) - -licenses(["notice"]) # Apache 2.0 diff --git a/experimental/python/BUILD b/experimental/python/BUILD deleted file mode 100644 index 8e8a059006..0000000000 --- a/experimental/python/BUILD +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 2018 The Bazel Authors. All rights reserved. -# -# 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. -package(default_visibility = ["//visibility:public"]) - -licenses(["notice"]) # Apache 2.0 - -exports_files(["wheel.bzl"]) diff --git a/experimental/python/wheel.bzl b/experimental/python/wheel.bzl deleted file mode 100644 index d3f3093518..0000000000 --- a/experimental/python/wheel.bzl +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 2018 The Bazel Authors. All rights reserved. -# -# 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. - -"""Obsolete. Use //python:packaging.bzl instead.""" - -# Load and re-export py_wheel and py_package for backwards compatibility. -load("//python:packaging.bzl", _py_package = "py_package", _py_wheel = "py_wheel") - -py_wheel = _py_wheel -py_package = _py_package