From 8235b1d2100976bbec812ba2e0d7ac0c62025039 Mon Sep 17 00:00:00 2001 From: sbidari Date: Tue, 28 Jul 2026 15:07:38 -0700 Subject: [PATCH 1/4] bundle synthetic data used for testing in pyrenew-multisignal --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index aad3143f..e717c780 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.metadata] -include = ["datasets/*.tsv"] +include = ["datasets/*.tsv", "datasets/synthetic_CA_120/*.csv"] exclude = ["datasets/*.rds"] [tool.hatch.build.targets.wheel] From 23d388aa8667ed6176e01c9d4162331227a02e19 Mon Sep 17 00:00:00 2001 From: Subekshya Bidari <37636707+sbidari@users.noreply.github.com> Date: Tue, 28 Jul 2026 15:13:07 -0700 Subject: [PATCH 2/4] Apply suggestion from @sbidari --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e717c780..5b2e9448 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.metadata] -include = ["datasets/*.tsv", "datasets/synthetic_CA_120/*.csv"] +include = ["datasets/*.tsv", "datasets/synthetic_CA_126/*.csv"] exclude = ["datasets/*.rds"] [tool.hatch.build.targets.wheel] From 046782346371b867e12b7c4566aacc339733f5e7 Mon Sep 17 00:00:00 2001 From: sbidari Date: Tue, 28 Jul 2026 15:35:23 -0700 Subject: [PATCH 3/4] includedataset in wheel package --- pyproject.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e717c780..9c905eac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,12 +39,11 @@ dev = [ requires = ["hatchling"] build-backend = "hatchling.build" -[tool.hatch.metadata] -include = ["datasets/*.tsv", "datasets/synthetic_CA_120/*.csv"] -exclude = ["datasets/*.rds"] - [tool.hatch.build.targets.wheel] packages = ["pyrenew"] +include = [ + "pyrenew/datasets/synthetic_CA_126/**" +] [tool.numpydoc_validation] checks = [ From cf8b0eec661332133e872892d344c6d5740c2145 Mon Sep 17 00:00:00 2001 From: sbidari Date: Tue, 28 Jul 2026 15:53:49 -0700 Subject: [PATCH 4/4] try again --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 039de801..14a31920 100755 --- a/.gitignore +++ b/.gitignore @@ -37,6 +37,7 @@ # Allowlist # !your_data_file.csv # !your_data_directory/ +!pyrenew/datasets/synthetic_CA_126/*.csv #####