1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Switch setup.py back to distutils
Upstream switched setup.py to use setuptools directly, rather than distutils.
However, this change is only necessary for building and publishing wheels,
which does not concern the Debian package, and setuptools is not currently
packaged for pypy, so this patch switches back to distutils.
.
Can be removed once setuptools is packaged for pypy in Debian (see #735855).
Author: Tristan Seligmann <mithrandi@debian.org>
Forwarded: no
Last-Update: 2014-01-18
Index: python-rply-0.7.1/setup.py
===================================================================
--- python-rply-0.7.1.orig/setup.py 2014-01-18 01:19:19.000000000 +0200
+++ python-rply-0.7.1/setup.py 2014-01-18 02:38:39.789465893 +0200
@@ -1,4 +1,4 @@
-from setuptools import setup
+from distutils.core import setup
with open("README.rst") as f:
|