From 66520a89e5502468ac9a9ee141a0b53f1e26f760 Mon Sep 17 00:00:00 2001 From: Jack Harper Date: Thu, 26 Mar 2026 13:51:53 +0000 Subject: [PATCH 1/2] correct some filepaths in pyproject.toml --- python/pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 180dcdd..00a875d 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "isis_streaming_data_types" dynamic = ["version"] description = "Python utilities for handling ISIS streamed data" -readme = "README.md" +readme = "../README.md" requires-python = ">=3.12" license-files = ["LICENSE"] @@ -52,9 +52,9 @@ dev = [ ] [project.urls] -"Homepage" = "https://github.com/isiscomputinggroup/isis_streaming_data_types" -"Bug Reports" = "https://github.com/isiscomputinggroup/isis_streaming_data_types/issues" -"Source" = "https://github.com/isiscomputinggroup/isis_streaming_data_types" +"Homepage" = "https://github.com/isiscomputinggroup/streaming_data_types" +"Bug Reports" = "https://github.com/isiscomputinggroup/streaming_data_types/issues" +"Source" = "https://github.com/isiscomputinggroup/streaming_data_types" [tool.pytest.ini_options] testpaths = "tests" From 6c8d776bbac4b18e4709fc17dca3532ee5d69dfb Mon Sep 17 00:00:00 2001 From: Jack Harper Date: Thu, 26 Mar 2026 13:58:58 +0000 Subject: [PATCH 2/2] try symlink --- python/README.md | 1 + python/pyproject.toml | 2 +- rust/Cargo.toml | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) create mode 120000 python/README.md diff --git a/python/README.md b/python/README.md new file mode 120000 index 0000000..32d46ee --- /dev/null +++ b/python/README.md @@ -0,0 +1 @@ +../README.md \ No newline at end of file diff --git a/python/pyproject.toml b/python/pyproject.toml index 00a875d..362de2f 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "isis_streaming_data_types" dynamic = ["version"] description = "Python utilities for handling ISIS streamed data" -readme = "../README.md" +readme = "README.md" requires-python = ">=3.12" license-files = ["LICENSE"] diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 7328949..f0c891e 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -7,6 +7,7 @@ license-file = "../LICENSE" documentation = "https://github.com/isisComputingGroup/streaming-data-types" homepage = "https://github.com/isisComputingGroup/streaming-data-types" repository = "https://github.com/isisComputingGroup/streaming-data-types" +readme = "../README.md" [dependencies] flatbuffers = "25.12.19"