We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f351330 commit 1f264dcCopy full SHA for 1f264dc
setup.py
@@ -21,7 +21,9 @@ def __str__(self):
21
ext_modules = [
22
Extension(
23
'python_example',
24
- ['src/main.cpp'],
+ # Sort input source files to ensure bit-for-bit reproducible builds
25
+ # (https://github.com/pybind/python_example/pull/53)
26
+ sorted(['src/main.cpp']),
27
include_dirs=[
28
# Path to pybind11 headers
29
get_pybind_include(),
0 commit comments