From 77f28e7478ae807b0ec926cf9ebb3f9110cc3c10 2021-12-10 18:52:45 From: Matthias Bussonnier Date: 2021-12-10 18:52:45 Subject: [PATCH] fix building --- diff --git a/MANIFEST.in b/MANIFEST.in index 8740db3..a86c1c7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,7 +2,6 @@ include README.rst include COPYING.rst include LICENSE include setupbase.py -include setupegg.py include MANIFEST.in include pytest.ini include mypy.ini diff --git a/tools/toollib.py b/tools/toollib.py index 510b54e..1555e55 100644 --- a/tools/toollib.py +++ b/tools/toollib.py @@ -18,10 +18,11 @@ archive = '%s:%s' % (archive_user, archive_dir) # Build commands # Source dists -sdists = './setup.py sdist --formats=gztar' +sdists = "{python} setup.py sdist --formats=xztar".format(python=sys.executable) # Binary dists def buildwheels(): - sh('{python} setupegg.py bdist_wheel'.format(python=sys.executable)) + sh("{python} setup.py bdist_wheel".format(python=sys.executable)) + # Utility functions def sh(cmd):