Skip to content

Commit

Permalink
Python 3.9 as a minimum supported version
Browse files Browse the repository at this point in the history
  • Loading branch information
mrakitin committed Oct 10, 2023
1 parent 7df9129 commit d5a3f2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}.
Expand Down

0 comments on commit d5a3f2d

Please sign in to comment.