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'], )