diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index ee95bbe..7060e06 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: host-os: ["ubuntu-latest", "macos-latest", "windows-latest"] - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] fail-fast: false runs-on: ${{ matrix.host-os }} diff --git a/setup.py b/setup.py index 2b246d3..8946a06 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ # NOTE: This file must remain Python 2 compatible for the foreseeable future, # to ensure that we error out properly for people with outdated setuptools # and/or pip. -min_version = (3, 7) +min_version = (3, 9) if sys.version_info < min_version: error = """ smi_analysis does not support Python {0}.{1}.