aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--experimental/BUILD16
-rw-r--r--experimental/python/BUILD18
-rw-r--r--experimental/python/wheel.bzl21
4 files changed, 1 insertions, 57 deletions
diff --git a/README.md b/README.md
index b553e09..7359a2a 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 a892ac1..0000000
--- 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 8e8a059..0000000
--- 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 d3f3093..0000000
--- 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