Skip to content

Commit 3704f16

Browse files
committed
Bump min python to 3.10, so TypeAlias works
1 parent 6534c83 commit 3704f16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.9", "3.10"]
11+
python-version: ["3.10", "3.11", "3.12"]
1212
fail-fast: false
1313

1414
steps:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# NOTE: This file must remain Python 2 compatible for the foreseeable future,
77
# to ensure that we error out properly for people with outdated setuptools
88
# and/or pip.
9-
min_version = (3, 9)
9+
min_version = (3, 10)
1010
if sys.version_info < min_version:
1111
error = """
1212
data_prototype does not support Python {0}.{1}.

0 commit comments

Comments
 (0)