Skip to content

Commit

Permalink
fix: Add missing dependency on typing_extensions (shaka-project#231)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
joeyparrish authored Jan 16, 2025
1 parent b22b8c5 commit cd49911
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
distro>=1.9,<2; platform_system == "Linux"
setproctitle>=1,<2
pyyaml>=6,<7
pywin32>=308; platform_system == "Windows"
pyyaml>=6,<7
setproctitle>=1,<2
typing_extensions>=4,<5
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@
url='https://github.com/shaka-project/shaka-streamer',
packages=setuptools.find_packages(),
install_requires=[
'setproctitle>=1,<2',
'pyyaml>=6,<7',
'pywin32>=308; platform_system == "Windows"',
'pyyaml>=6,<7',
'setproctitle>=1,<2',
'typing_extensions>=4,<5',
],
scripts=['shaka-streamer'],
classifiers=[
Expand Down

0 comments on commit cd49911

Please sign in to comment.