From b3929b440baffbfa94efbd36373ef0b173433292 Mon Sep 17 00:00:00 2001 From: Thorsten Beier Date: Thu, 11 Jun 2026 10:09:42 +0200 Subject: [PATCH 1/3] add exclude patterns for scikit-image in config --- config/empack_config.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/config/empack_config.yaml b/config/empack_config.yaml index f5f1ff5..50b094c 100644 --- a/config/empack_config.yaml +++ b/config/empack_config.yaml @@ -17,6 +17,25 @@ packages: - pattern: '**/*.pyc' - pattern: '**/*.typed' - pattern: '**/*.egg-info' + scikit-image: + exclude_patterns: + - pattern: 'bin/**' + - pattern: '**/bin/**' + - pattern: 'tests/**' + - pattern: '**/tests/**' + - pattern: '**/*.ini' + - pattern: '**/*.exe' + - pattern: '**/*.c' + - pattern: '**/*.pxd' + # - pattern: '**/*.pyi' #<= we need this + - pattern: '**/*.pyx' + - pattern: '**/*.pyc' + - pattern: '**/*.typed' + - pattern: '**/*.egg-info' + - pattern: '**/site-packages/pip/_vendor/**' + - pattern: '**/idlelib/**' + - pattern: '**/ensurepip/**' + - pattern: 'Scripts/*' default: exclude_patterns: - pattern: 'bin/**' From 1e72c17614cb61e99de1d970928686cfec69816a Mon Sep 17 00:00:00 2001 From: Thorsten Beier Date: Thu, 11 Jun 2026 10:10:40 +0200 Subject: [PATCH 2/3] Update empack_config.yaml --- config/empack_config.yaml | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/config/empack_config.yaml b/config/empack_config.yaml index 50b094c..b938516 100644 --- a/config/empack_config.yaml +++ b/config/empack_config.yaml @@ -19,23 +19,23 @@ packages: - pattern: '**/*.egg-info' scikit-image: exclude_patterns: - - pattern: 'bin/**' - - pattern: '**/bin/**' - - pattern: 'tests/**' - - pattern: '**/tests/**' - - pattern: '**/*.ini' - - pattern: '**/*.exe' - - pattern: '**/*.c' - - pattern: '**/*.pxd' - # - pattern: '**/*.pyi' #<= we need this - - pattern: '**/*.pyx' - - pattern: '**/*.pyc' - - pattern: '**/*.typed' - - pattern: '**/*.egg-info' - - pattern: '**/site-packages/pip/_vendor/**' - - pattern: '**/idlelib/**' - - pattern: '**/ensurepip/**' - - pattern: 'Scripts/*' + - pattern: 'bin/**' + - pattern: '**/bin/**' + - pattern: 'tests/**' + - pattern: '**/tests/**' + - pattern: '**/*.ini' + - pattern: '**/*.exe' + - pattern: '**/*.c' + - pattern: '**/*.pxd' + # - pattern: '**/*.pyi' #<= we need this + - pattern: '**/*.pyx' + - pattern: '**/*.pyc' + - pattern: '**/*.typed' + - pattern: '**/*.egg-info' + - pattern: '**/site-packages/pip/_vendor/**' + - pattern: '**/idlelib/**' + - pattern: '**/ensurepip/**' + - pattern: 'Scripts/*' default: exclude_patterns: - pattern: 'bin/**' From b0038996ffb0efc062affef4998c7b453957366e Mon Sep 17 00:00:00 2001 From: Thorsten Beier Date: Thu, 11 Jun 2026 10:17:20 +0200 Subject: [PATCH 3/3] Remove scikit-image exclude patterns from empack config Removed scikit-image specific exclude patterns from configuration. --- config/empack_config.yaml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/config/empack_config.yaml b/config/empack_config.yaml index b938516..d0c195a 100644 --- a/config/empack_config.yaml +++ b/config/empack_config.yaml @@ -17,25 +17,6 @@ packages: - pattern: '**/*.pyc' - pattern: '**/*.typed' - pattern: '**/*.egg-info' - scikit-image: - exclude_patterns: - - pattern: 'bin/**' - - pattern: '**/bin/**' - - pattern: 'tests/**' - - pattern: '**/tests/**' - - pattern: '**/*.ini' - - pattern: '**/*.exe' - - pattern: '**/*.c' - - pattern: '**/*.pxd' - # - pattern: '**/*.pyi' #<= we need this - - pattern: '**/*.pyx' - - pattern: '**/*.pyc' - - pattern: '**/*.typed' - - pattern: '**/*.egg-info' - - pattern: '**/site-packages/pip/_vendor/**' - - pattern: '**/idlelib/**' - - pattern: '**/ensurepip/**' - - pattern: 'Scripts/*' default: exclude_patterns: - pattern: 'bin/**' @@ -46,7 +27,6 @@ default: - pattern: '**/*.exe' - pattern: '**/*.c' - pattern: '**/*.pxd' - - pattern: '**/*.pyi' - pattern: '**/*.pyx' - pattern: '**/*.pyc' - pattern: '**/*.typed'