From 2e3810f46cfae759e6e93393d3dd65410873839a Mon Sep 17 00:00:00 2001 From: juacrumar Date: Tue, 7 Jan 2025 08:41:14 +0100 Subject: [PATCH] poetry 2 defaults includes to only sdist, add also wheel --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9f10d7b934..e96eec831b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,10 +29,10 @@ packages = [ # Data files include = [ # The default profile is included together with the validphys package - "validphys2/src/validphys/nnprofile_default.yaml", + { path ="validphys2/src/validphys/nnprofile_default.yaml",format = ["sdist", "wheel"] }, # The version file is ignored by git so it needs to be explicitly included - "validphys2/src/validphys/_version.py", - "nnpdf_data/nnpdf_data/_version.py" + { path ="validphys2/src/validphys/_version.py", format = ["sdist", "wheel"] }, + { path ="nnpdf_data/nnpdf_data/_version.py", format = ["sdist", "wheel"] } ] [tool.poetry.scripts]