aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-rasterio/10-cython.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/py3-rasterio/10-cython.patch')
-rw-r--r--testing/py3-rasterio/10-cython.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/testing/py3-rasterio/10-cython.patch b/testing/py3-rasterio/10-cython.patch
deleted file mode 100644
index cdb7f45596f..00000000000
--- a/testing/py3-rasterio/10-cython.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Author: Holger Jaekel <holger.jaekel@gmx.de>
-Summary: use language level 3 for cython
-----
-
---- a/setup.py
-+++ b/setup.py
-@@ -304,7 +304,7 @@ if os.path.exists("MANIFEST.in") and "cl
- 'rasterio.shutil', ['rasterio/shutil.pyx'], **ext_options),
- Extension(
- 'rasterio._transform', ['rasterio/_transform.pyx'], **ext_options)],
-- quiet=True, **cythonize_options)
-+ quiet=True, compiler_directives={'language_level' : "2"}, **cythonize_options)
-
- # If there's no manifest template, as in an sdist, we just specify .c files.
- else: