Skip to content

Commit be1e8b2

Browse files
committed
setup/lint-and-test: Add support for CPython 3.10.
1 parent 507da5b commit be1e8b2

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
@@ -66,6 +66,7 @@ jobs:
6666
- {PYTHON: 3.7, OS: ubuntu-latest, NAME: "CPython 3.7 (ubuntu)"}
6767
- {PYTHON: 3.8, OS: ubuntu-latest, NAME: "CPython 3.8 (ubuntu)"}
6868
- {PYTHON: 3.9, OS: ubuntu-latest, NAME: "CPython 3.9 (ubuntu)", CODECOV: true}
69+
- {PYTHON: "3.10.0-rc.1", OS: ubuntu-latest, NAME: "CPython 3.10RC1 (ubuntu)"}
6970
- {PYTHON: 'pypy3', OS: ubuntu-latest, NAME: "PyPy 3 (ubuntu)"}
7071
- {PYTHON: 3.9, OS: macos-latest, NAME: "CPython 3.9 (macos)"}
7172
runs-on: ${{ matrix.env.OS }}

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ def long_description():
7777
"Programming Language :: Python :: 3.7",
7878
"Programming Language :: Python :: 3.8",
7979
"Programming Language :: Python :: 3.9",
80+
"Programming Language :: Python :: 3.10",
8081
"Programming Language :: Python :: Implementation :: CPython",
8182
"Programming Language :: Python :: Implementation :: PyPy",
8283
],
@@ -86,7 +87,7 @@ def long_description():
8687
"Issues": "https://github.com/zulip/zulip-terminal/issues",
8788
"Hot Keys": "https://github.com/zulip/zulip-terminal/blob/main/docs/hotkeys.md",
8889
},
89-
python_requires=">=3.6, <3.10",
90+
python_requires=">=3.6, <3.11",
9091
keywords="",
9192
packages=find_packages(exclude=["tests", "tests.*"]),
9293
zip_safe=True,

0 commit comments

Comments
 (0)