From 0c42b91473bb74de9f2d7b5ccd7c33e4d68dc60b Mon Sep 17 00:00:00 2001 From: Edoardo Pasca <14138589+paskino@users.noreply.github.com> Date: Thu, 16 Oct 2025 11:11:29 +0100 Subject: [PATCH 1/4] enable multiple packages in namespace --- Wrappers/Python/ccpi/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Wrappers/Python/ccpi/__init__.py b/Wrappers/Python/ccpi/__init__.py index e69de29b..0260537a 100644 --- a/Wrappers/Python/ccpi/__init__.py +++ b/Wrappers/Python/ccpi/__init__.py @@ -0,0 +1 @@ +__path__ = __import__('pkgutil').extend_path(__path__, __name__) \ No newline at end of file From 10690be83debf30ca53168a0c514260f791d8ff6 Mon Sep 17 00:00:00 2001 From: Edoardo Pasca <14138589+paskino@users.noreply.github.com> Date: Thu, 16 Oct 2025 11:26:22 +0100 Subject: [PATCH 2/4] remove from namespace --- Wrappers/Python/ccpi/__init__.py | 1 - 1 file changed, 1 deletion(-) delete mode 100644 Wrappers/Python/ccpi/__init__.py diff --git a/Wrappers/Python/ccpi/__init__.py b/Wrappers/Python/ccpi/__init__.py deleted file mode 100644 index 0260537a..00000000 --- a/Wrappers/Python/ccpi/__init__.py +++ /dev/null @@ -1 +0,0 @@ -__path__ = __import__('pkgutil').extend_path(__path__, __name__) \ No newline at end of file From afc9da7bb1e20bcfffd774033608aa4961c59ee6 Mon Sep 17 00:00:00 2001 From: Edoardo Pasca <14138589+paskino@users.noreply.github.com> Date: Thu, 16 Oct 2025 15:26:09 +0100 Subject: [PATCH 3/4] update changelog --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd59867d..47825166 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## vx.x.x +## v25.1.0 New Functionality: - Added toolbar to control the slice and volume render in QCILViewerWidget (#458) - added methods to access the state of the viewer3D (#479) @@ -8,6 +8,7 @@ Enhancements: - Update recipe to require eqt Version 2.0.0 #458 - Add a toolbar and settings menus to the 3D viewer #458 - Add script to generate numpy array test data #458 +- Removed `__init__.py` in ccpi namespace, PEP-420 #483 ## v25.0.0 From 52a1333b21d85ab4934d55697502588a286f9b8f Mon Sep 17 00:00:00 2001 From: Edoardo Pasca <14138589+paskino@users.noreply.github.com> Date: Thu, 16 Oct 2025 15:46:25 +0100 Subject: [PATCH 4/4] update GHA --- .github/workflows/conda_build_and_publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conda_build_and_publish.yml b/.github/workflows/conda_build_and_publish.yml index 23439559..257451e9 100644 --- a/.github/workflows/conda_build_and_publish.yml +++ b/.github/workflows/conda_build_and_publish.yml @@ -18,7 +18,7 @@ jobs: with: fetch-depth: 0 # All history for use later with the meta.yaml file for conda-recipes - name: publish-to-conda - uses: TomographicImaging/conda-package-publish-action@v2 + uses: TomographicImaging/conda-package-publish-action@v2.1 with: subDir: 'Wrappers/Python/conda-recipe' channels: '-c conda-forge -c ccpi'