Skip to content

Commit

Permalink
Merge pull request #17 from NSLS-II-SMI/fix-ci
Browse files Browse the repository at this point in the history
Python 3.9 as a minimum supported version
  • Loading branch information
gfreychet authored Oct 12, 2023
2 parents 7df9129 + d5a3f2d commit c11246d
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 c11246d

Please sign in to comment.