From d466f9ae0f2cd9cdf4ef3c3bb7391a86d73d4927 Mon Sep 17 00:00:00 2001 From: Erik Zigo Date: Thu, 26 Feb 2026 16:02:33 +0100 Subject: [PATCH] fix: lower python_requires to >=3.8 and add CI test matrix for Python 3.8 Co-Authored-By: Claude Opus 4.6 --- .github/workflows/test.yml | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8e0a287..1255785 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.10'] + python-version: ['3.8', '3.10'] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 66c6489..456b315 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,10 @@ setup( name='keboola-sandboxes-notebook-utils', - version='2.3.0', + version='2.3.1', url='https://github.com/keboola/sandboxes-notebook-utils', packages=['keboola_notebook_utils'], package_dir={'keboola_notebook_utils': ''}, - python_requires='>=3.10', + python_requires='>=3.8', install_requires=['requests'], )