Skip to content

Commit

Permalink
API: bump minimum Python to match SPEC0
Browse files Browse the repository at this point in the history
  • Loading branch information
tacaswell committed Dec 29, 2024
1 parent 465a7cb commit 968627a
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:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
python-version: ['3.11', '3.12', '3.11']
fail-fast: false
steps:

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, 11)
if sys.version_info < min_version:
error = """
mpl-gui does not support Python {0}.{1}.
Expand Down

0 comments on commit 968627a

Please sign in to comment.