summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-01-23 14:20:57 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-01-23 14:21:49 -0500
commite3e7ff854038788d56d6d7f6624357b81341e876 (patch)
tree238ea45a0eac79022557282afe968390a683e8af
parent71815558fb8cd44028d838b693f2083a3e969c74 (diff)
downloadpython-setuptools-git-bugfix/1996-no-bootstrap.tar.gz
For compatibility, add a bootstrap script with a warning.bugfix/1996-no-bootstrap
-rw-r--r--bootstrap.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/bootstrap.py b/bootstrap.py
new file mode 100644
index 00000000..229b9965
--- /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)