Skip to content

Commit 8042487

Browse files
msimacektimfel
authored andcommitted
Add patch for lazy-object-proxy
1 parent 3b7af68 commit 8042487

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
diff --git a/setup.py b/setup.py
2+
index 341ae64..3cfcd70 100755
3+
--- a/setup.py
4+
+++ b/setup.py
5+
@@ -136,7 +136,7 @@ setup(
6+
],
7+
cmdclass={'build_ext': OptionalBuildExt},
8+
ext_modules=[]
9+
- if hasattr(sys, 'pypy_version_info')
10+
+ if sys.implementation.name != 'cpython'
11+
else [
12+
Extension(
13+
splitext(relpath(path, 'src').replace(os.sep, '.'))[0],
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[[rules]]
2+
# Disable optional C ext. Upstreamable
3+
patch = 'lazy-object-proxy.patch'
4+
dist-type = 'sdist'

0 commit comments

Comments
 (0)