Skip to content
Snippets Groups Projects
Commit 3d17ce85 authored by Andreas Dedner's avatar Andreas Dedner
Browse files

add pip to rquired packages in pyproject.toml

parent 3820da8d
Branches
Tags
1 merge request!964add pip to rquired packages in pyproject.toml
Pipeline #36813 passed
Pipeline: Dune Nightly Test

#36814

    ......@@ -96,7 +96,7 @@ def main(argv):
    # Generate pyproject.toml
    print("Generate pyproject.toml")
    f = open("pyproject.toml", "w")
    requires = ["setuptools", "wheel", "scikit-build", "cmake", "ninja", "requests"]
    requires = ["pip", "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")
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment