Skip to content

Commit f0f50f5

Browse files
committed
Require typing-extensions for old Python in setup
1 parent 63eba31 commit f0f50f5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
"Programming Language :: Python :: 3.9",
3333
"Programming Language :: Python :: 3.10",
3434
],
35-
install_requires=[],
35+
install_requires=[
36+
"typing-extensions>=4.1,<5; python_version < '3.8'",
37+
],
3638
python_requires=">=3.6,<4",
3739
packages=find_packages("src"),
3840
package_dir={"": "src"},

0 commit comments

Comments
 (0)