diff options
-rw-r--r-- | changelog.d/1517.change.rst | 1 | ||||
-rw-r--r-- | setuptools/command/easy_install.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changelog.d/1517.change.rst b/changelog.d/1517.change.rst new file mode 100644 index 00000000..18a77a8b --- /dev/null +++ b/changelog.d/1517.change.rst @@ -0,0 +1 @@ +Dropped use of six.u in favor of `u""` literals. diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 3da601b7..c670a16e 100644 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -632,7 +632,7 @@ class easy_install(Command): @contextlib.contextmanager def _tmpdir(self): - tmpdir = tempfile.mkdtemp(prefix=six.u("easy_install-")) + tmpdir = tempfile.mkdtemp(prefix=u"easy_install-") try: # cast to str as workaround for #709 and #710 and #712 yield str(tmpdir) |