We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dacce4f commit 02e6f81Copy full SHA for 02e6f81
1 file changed
postgresql/release/distutils.py
@@ -1,6 +1,5 @@
1
##
2
-# copyright 2009, James William Pye
3
-# http://python.projects.postgresql.org
+# .release.distutils - distutils data
4
5
"""
6
Python distutils data provisions module.
@@ -127,7 +126,8 @@ def prefixed_extensions(
127
126
yield Extension(
128
pkg_prefix + mod,
129
[os.path.join(path_prefix, src) for src in data['sources']],
130
- libraries = data.get('libraries', ())
+ libraries = data.get('libraries', ()),
+ optional = True,
131
)
132
133
def prefixed_packages(
0 commit comments