Skip to content

Commit cd49911

Browse files
authored
fix: Add missing dependency on typing_extensions (#231)
This dependency was introduced in 1.2.0 to enable `typing` module features not yet standard in Python 3.9, so that everything could be properly typed without requiring newer Python versions yet.
1 parent b22b8c5 commit cd49911

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
distro>=1.9,<2; platform_system == "Linux"
2-
setproctitle>=1,<2
3-
pyyaml>=6,<7
42
pywin32>=308; platform_system == "Windows"
3+
pyyaml>=6,<7
4+
setproctitle>=1,<2
5+
typing_extensions>=4,<5

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@
3030
url='https://github.com/shaka-project/shaka-streamer',
3131
packages=setuptools.find_packages(),
3232
install_requires=[
33-
'setproctitle>=1,<2',
34-
'pyyaml>=6,<7',
3533
'pywin32>=308; platform_system == "Windows"',
34+
'pyyaml>=6,<7',
35+
'setproctitle>=1,<2',
36+
'typing_extensions>=4,<5',
3637
],
3738
scripts=['shaka-streamer'],
3839
classifiers=[

0 commit comments

Comments
 (0)