diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index ef7ed45..e3287eb 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -18,7 +18,7 @@ jobs: #windows-latest, macOS-latest ] - python-version: ['3.9', '3.10'] + python-version: ['3.9', '3.10', '3.11', '3.12'] poetry-version: [1.7.1] fail-fast: false runs-on: ${{ matrix.os }} diff --git a/pyproject.toml b/pyproject.toml index 4bd4be5..73ae31b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ classifiers = [ ] [tool.poetry.dependencies] -python = ">=3.9,<3.11" # Compatible python versions must be declared here +python = ">=3.9,<3.12" # Compatible python versions must be declared here pandas = "^1.5.3" psutil = "^5.8.0" glob2 = "^0.7"