aboutsummaryrefslogtreecommitdiffstats
path: root/pkg_resources/py2_warn.py
blob: 6855aa245e370b477218d07cd03f449a26758e7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import sys
import warnings
import textwrap


msg = textwrap.dedent("""
    Encountered a version of Setuptools that no longer supports
    this version of Python. Please head to
    https://bit.ly/setuptools-py2-sunset for support.
    """)

pre = "Setuptools no longer works on Python 2\n"

if sys.version_info < (3,):
    warnings.warn(pre + "*" * 60 + msg + "*" * 60)
    raise SystemExit(32)