From 223d91dc82e5e02c7139bd202cc9c02cdcb6e992 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Fri, 15 Dec 2017 00:07:04 +0200 Subject: [PATCH] sdist_upip: Need to override setuptools' "sdist" command, not distutils'. Without setuptools, there will be no goodies like dependencies, etc. --- sdist_upip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdist_upip.py b/sdist_upip.py index 137110ed..d0e3e485 100644 --- a/sdist_upip.py +++ b/sdist_upip.py @@ -21,7 +21,7 @@ import re import io from distutils.filelist import FileList -from distutils.command.sdist import sdist as _sdist +from setuptools.command.sdist import sdist as _sdist def gzip_4k(inf, fname):