From 764660544854b139dd06cccbb433211dba493b1d Mon Sep 17 00:00:00 2001 From: muchojp <1105mucho@gmail.com> Date: Tue, 30 Dec 2025 21:12:59 +0900 Subject: [PATCH 1/8] 20251230 try to clear dependencies 01 --- pyproject.toml | 4 ++-- requirements.txt | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8348f06..b6a79f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,8 +15,8 @@ numpy = [ {version = "<=1.21.1", python = "3.6"}, {version = ">=1.21.3,<1.22.0", python = "3.7"}, {version = ">=1.21.3,<1.25.0", python = "3.8"}, - {version = ">=1.26.4,<2.1.0", python = ">=3.9,<3.13"}, - {version = ">=2.1.0", python = ">=3.13"}, + {version = ">=1.26.4,<2.1.0", python = "3.9"}, + {version = ">=2.1.0", python = ">=3.10"}, ] matplotlib = ">=3.3.0" pandas = [ diff --git a/requirements.txt b/requirements.txt index 462b131..4ba44a6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,9 +2,9 @@ numpy <=1.21.1; python_version == '3.6' numpy>=1.21.3,<1.22.0; python_version == '3.7' numpy>=1.21.3,<1.25.0; python_version == '3.8' numpy>=1.26.4,<2.1.0; python_version == '3.9' -numpy>=1.26.4,<2.1.0; python_version == '3.10' -numpy>=1.26.4,<2.1.0; python_version == '3.11' -numpy>=1.26.4,<2.1.0; python_version == '3.12' +numpy>=2.1.0; python_version == '3.10' +numpy>=2.1.0; python_version == '3.11' +numpy>=2.1.0; python_version == '3.12' numpy>=2.1.0; python_version >= '3.13' matplotlib>=3.3.0; python_version >= '3.7' pandas<= 1.1.5; python_version < '3.9' From 99f84bd865a58a435f90ebc3a9680273eb4de37e Mon Sep 17 00:00:00 2001 From: muchojp <1105mucho@gmail.com> Date: Tue, 30 Dec 2025 21:22:09 +0900 Subject: [PATCH 2/8] 20251230 more simple dependencies settings --- pyproject.toml | 2 +- requirements.txt | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b6a79f8..49214a5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ numpy = [ {version = ">=1.21.3,<1.22.0", python = "3.7"}, {version = ">=1.21.3,<1.25.0", python = "3.8"}, {version = ">=1.26.4,<2.1.0", python = "3.9"}, - {version = ">=2.1.0", python = ">=3.10"}, + {version = ">=2.1.0", python = ">=3.10"}, ] matplotlib = ">=3.3.0" pandas = [ diff --git a/requirements.txt b/requirements.txt index 4ba44a6..baf7c26 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,10 +2,7 @@ numpy <=1.21.1; python_version == '3.6' numpy>=1.21.3,<1.22.0; python_version == '3.7' numpy>=1.21.3,<1.25.0; python_version == '3.8' numpy>=1.26.4,<2.1.0; python_version == '3.9' -numpy>=2.1.0; python_version == '3.10' -numpy>=2.1.0; python_version == '3.11' -numpy>=2.1.0; python_version == '3.12' -numpy>=2.1.0; python_version >= '3.13' +numpy>=2.1.0; python_version >= '3.10' matplotlib>=3.3.0; python_version >= '3.7' pandas<= 1.1.5; python_version < '3.9' pandas>= 1.0.0; python_version >= '3.9' From 871a9ea4bd167231efb68599752372f8601701fa Mon Sep 17 00:00:00 2001 From: muchojp <1105mucho@gmail.com> Date: Tue, 30 Dec 2025 21:31:06 +0900 Subject: [PATCH 3/8] 20251230 pillow dependencies check --- pyproject.toml | 4 ++-- requirements.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 49214a5..6bf6fe5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,8 +24,8 @@ pandas = [ {version = ">=1.0.0", python = ">=3.9"}, ] pillow = [ - {version = "<10.0.0", python = "<3.12"}, - {version = ">=10.0.0", python = ">=3.12"}, + {version = "<10.0.0", python = "<3.10"}, + {version = ">=10.0.0", python = ">=3.10"}, ] diff --git a/requirements.txt b/requirements.txt index baf7c26..1bdd0f8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,6 +6,6 @@ numpy>=2.1.0; python_version >= '3.10' matplotlib>=3.3.0; python_version >= '3.7' pandas<= 1.1.5; python_version < '3.9' pandas>= 1.0.0; python_version >= '3.9' -pillow<10.0.0; python_version < '3.12' -pillow>=10.0.0; python_version >= '3.12' +pillow<10.0.0; python_version < '3.10' +pillow>=10.0.0; python_version >= '3.10' From b84c1591dbd0c61125d6e7c830aa0ed0bd3e9e47 Mon Sep 17 00:00:00 2001 From: muchojp <1105mucho@gmail.com> Date: Wed, 31 Dec 2025 09:45:56 +0900 Subject: [PATCH 4/8] 20251231 remove pillow dependencies --- pyproject.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6bf6fe5..e47c9e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,10 +23,10 @@ pandas = [ {version = "<=1.1.5", python = "<3.9"}, {version = ">=1.0.0", python = ">=3.9"}, ] -pillow = [ - {version = "<10.0.0", python = "<3.10"}, - {version = ">=10.0.0", python = ">=3.10"}, -] +# pillow = [ +# {version = "<10.0.0", python = "<3.10"}, +# {version = ">=10.0.0", python = ">=3.10"}, +# ] [tool.poetry.dev-dependencies] From 2feec9ccb4e01a8265800263bfed062b027e1b06 Mon Sep 17 00:00:00 2001 From: muchojp <1105mucho@gmail.com> Date: Wed, 31 Dec 2025 09:50:41 +0900 Subject: [PATCH 5/8] 20251231 try to remove pandas dependencies --- pyproject.toml | 14 +++++++------- requirements.txt | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e47c9e8..0d451b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,14 +19,14 @@ numpy = [ {version = ">=2.1.0", python = ">=3.10"}, ] matplotlib = ">=3.3.0" -pandas = [ - {version = "<=1.1.5", python = "<3.9"}, - {version = ">=1.0.0", python = ">=3.9"}, -] -# pillow = [ -# {version = "<10.0.0", python = "<3.10"}, -# {version = ">=10.0.0", python = ">=3.10"}, +# pandas = [ +# {version = "<=1.1.5", python = "<3.9"}, +# {version = ">=1.0.0", python = ">=3.9"}, # ] +pillow = [ + {version = "<10.0.0", python = "<3.10"}, + {version = ">=10.0.0", python = ">=3.10"}, +] [tool.poetry.dev-dependencies] diff --git a/requirements.txt b/requirements.txt index 1bdd0f8..9bc98d7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,8 +4,8 @@ numpy>=1.21.3,<1.25.0; python_version == '3.8' numpy>=1.26.4,<2.1.0; python_version == '3.9' numpy>=2.1.0; python_version >= '3.10' matplotlib>=3.3.0; python_version >= '3.7' -pandas<= 1.1.5; python_version < '3.9' -pandas>= 1.0.0; python_version >= '3.9' +# pandas<= 1.1.5; python_version < '3.9' +# pandas>= 1.0.0; python_version >= '3.9' pillow<10.0.0; python_version < '3.10' pillow>=10.0.0; python_version >= '3.10' From 8e52bc91784e379389251c44e02d47f2874398a7 Mon Sep 17 00:00:00 2001 From: muchojp <1105mucho@gmail.com> Date: Wed, 31 Dec 2025 10:05:29 +0900 Subject: [PATCH 6/8] 20251231 poetry no cache --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2bf333..bc39e48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,8 @@ jobs: # install dependencies if cache does not exist #---------------------------------------------- - name: Install dependencies - if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + # Tempolary comment out + # if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root #---------------------------------------------- # install your root project, if required From 325e9baec88d4ebaf91147237488b8a4c49afdd7 Mon Sep 17 00:00:00 2001 From: muchojp <1105mucho@gmail.com> Date: Wed, 31 Dec 2025 10:12:05 +0900 Subject: [PATCH 7/8] 20251231 poetry no cache --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc39e48..8c4396c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: #---------------------------------------------- - name: Install dependencies # Tempolary comment out - # if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' + if: steps.cached-poetry-dependencies.outputs.cache-hit != 'false' run: poetry install --no-interaction --no-root #---------------------------------------------- # install your root project, if required From cb1bb1ed25d1157f7a12ee29adb630d73f323451 Mon Sep 17 00:00:00 2001 From: muchojp <1105mucho@gmail.com> Date: Wed, 31 Dec 2025 10:33:10 +0900 Subject: [PATCH 8/8] 20251231 delete pandas dependencies --- .github/workflows/ci.yml | 3 +-- pyproject.toml | 4 ---- requirements.txt | 2 -- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c4396c..e2bf333 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,8 +72,7 @@ jobs: # install dependencies if cache does not exist #---------------------------------------------- - name: Install dependencies - # Tempolary comment out - if: steps.cached-poetry-dependencies.outputs.cache-hit != 'false' + if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' run: poetry install --no-interaction --no-root #---------------------------------------------- # install your root project, if required diff --git a/pyproject.toml b/pyproject.toml index 0d451b2..0365586 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,10 +19,6 @@ numpy = [ {version = ">=2.1.0", python = ">=3.10"}, ] matplotlib = ">=3.3.0" -# pandas = [ -# {version = "<=1.1.5", python = "<3.9"}, -# {version = ">=1.0.0", python = ">=3.9"}, -# ] pillow = [ {version = "<10.0.0", python = "<3.10"}, {version = ">=10.0.0", python = ">=3.10"}, diff --git a/requirements.txt b/requirements.txt index 9bc98d7..195c701 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,8 +4,6 @@ numpy>=1.21.3,<1.25.0; python_version == '3.8' numpy>=1.26.4,<2.1.0; python_version == '3.9' numpy>=2.1.0; python_version >= '3.10' matplotlib>=3.3.0; python_version >= '3.7' -# pandas<= 1.1.5; python_version < '3.9' -# pandas>= 1.0.0; python_version >= '3.9' pillow<10.0.0; python_version < '3.10' pillow>=10.0.0; python_version >= '3.10'