File: 0003-Do-not-install-.pxi-file.patch

package info (click to toggle)
python-shapely 1.5.17-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,208 kB
  • ctags: 1,572
  • sloc: python: 8,379; makefile: 101; sh: 17
file content (20 lines) | stat: -rw-r--r-- 598 bytes parent folder | download
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           = {},
 )