Skip to content

Commit ce2c41a

Browse files
committed
setup/lint-and-test: Add initial CPython 3.12 testing support.
1 parent 2d25ba9 commit ce2c41a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/lint-and-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ jobs:
203203
- {PYTHON: 3.9, OS: ubuntu-latest, NAME: "CPython 3.9 (ubuntu)", EXPECT: "Linux"}
204204
- {PYTHON: "3.10", OS: ubuntu-latest, NAME: "CPython 3.10 (ubuntu)", EXPECT: "Linux"}
205205
- {PYTHON: "3.11", OS: ubuntu-latest, NAME: "CPython 3.11 (ubuntu)", EXPECT: "Linux"}
206+
- {PYTHON: "3.12-dev", OS: ubuntu-latest, NAME: "CPython 3.12 (ubuntu)", EXPECT: "Linux"}
206207
- {PYTHON: 'pypy-3.7', OS: ubuntu-latest, NAME: "PyPy 3.7 (ubuntu)", EXPECT: "Linux"}
207208
- {PYTHON: 'pypy-3.8', OS: ubuntu-latest, NAME: "PyPy 3.8 (ubuntu)", EXPECT: "Linux"}
208209
- {PYTHON: 'pypy-3.9', OS: ubuntu-latest, NAME: "PyPy 3.9 (ubuntu)", EXPECT: "Linux"}

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def long_description():
6868
"Programming Language :: Python :: 3.9",
6969
"Programming Language :: Python :: 3.10",
7070
"Programming Language :: Python :: 3.11",
71+
"Programming Language :: Python :: 3.12",
7172
"Programming Language :: Python :: Implementation :: CPython",
7273
"Programming Language :: Python :: Implementation :: PyPy",
7374
],
@@ -77,7 +78,7 @@ def long_description():
7778
"Issues": "https://github.com/zulip/zulip-terminal/issues",
7879
"Hot Keys": "https://github.com/zulip/zulip-terminal/blob/main/docs/hotkeys.md",
7980
},
80-
python_requires=">=3.7, <3.12",
81+
python_requires=">=3.7, <3.13",
8182
keywords="",
8283
packages=find_packages(exclude=["tests", "tests.*"]),
8384
zip_safe=True,

0 commit comments

Comments
 (0)