From e3e7ff854038788d56d6d7f6624357b81341e876 Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sat, 23 Jan 2021 14:20:57 -0500 Subject: [PATCH] For compatibility, add a bootstrap script with a warning. --- bootstrap.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 bootstrap.py diff --git a/bootstrap.py b/bootstrap.py new file mode 100644 index 0000000000..229b996503 --- /dev/null +++ b/bootstrap.py @@ -0,0 +1,7 @@ +import warnings + + +msg = "bootstrap.py is no longer needed. Use a PEP-517-compatible builder instead." + + +__name__ == '__main__' and warnings.warn(msg)