1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Pietro Battiston <me@pietrobattiston.it>
Date: Mon, 29 Sep 2014 08:48:38 +0200
Subject: Do not install .pxi file
This file is apparently not required for the (post-install) functioning of
shapely, and it makes the Python 2 and 3 versions clash.
---
setup.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
--- a/setup.py
+++ b/setup.py
@@ -120,7 +120,6 @@ setup_args = dict(
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: GIS',
],
- data_files = [('shapely', ['shapely/_geos.pxi'])],
cmdclass = {},
)
|