Skip to content
Snippets Groups Projects

Merge of small MRs that make changes to the Python bindings

Merged Andreas Dedner requested to merge features/combinedPythonMRs into master
1 unresolved thread
Compare and Show latest version
7 files
+ 33
30
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 2
2
@@ -96,8 +96,8 @@ def main(argv):
# Generate pyproject.toml
print("Generate pyproject.toml")
f = open("pyproject.toml", "w")
requires = ["setuptools", "wheel", "scikit-build", "cmake", "ninja", "requests", "portalocker", "numpy"]
requires += data.asPythonRequirementString(data.depends + data.python_requires)
requires = ["setuptools", "wheel", "scikit-build", "cmake", "ninja", "requests"]
requires += [r for r in data.asPythonRequirementString(data.depends + data.python_requires) if r not in requires]
f.write("[build-system]\n")
f.write("requires = "+requires.__str__()+"\n")
f.write("build-backend = 'setuptools.build_meta'\n")
Loading