diff options
author | morpheus65535 <[email protected]> | 2021-07-07 13:32:45 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2021-07-07 13:32:45 -0400 |
commit | 0a1ad41f9df173bff7eb053334c50d593f51fd75 (patch) | |
tree | 4255bc9aeeeda87c01058306bdcc51069d3ee910 | |
parent | 3b1b67d70142c6a6f77dac7e84755a1519449447 (diff) | |
download | bazarr-0a1ad41f9df173bff7eb053334c50d593f51fd75.tar.gz bazarr-0a1ad41f9df173bff7eb053334c50d593f51fd75.zip |
Added setuptools to requirements.txt. It should be already installed in most case but just in case.v0.9.6-beta.40
-rw-r--r-- | bazarr/init.py | 2 | ||||
-rw-r--r-- | requirements.txt | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/bazarr/init.py b/bazarr/init.py index f3b3a13f2..2ecc1902e 100644 --- a/bazarr/init.py +++ b/bazarr/init.py @@ -45,7 +45,7 @@ import logging # deploy requirements.txt if not args.no_update: try: - import lxml, numpy, webrtcvad, gevent, geventwebsocket + import lxml, numpy, webrtcvad, gevent, geventwebsocket, setuptools except ImportError: try: import pip diff --git a/requirements.txt b/requirements.txt index 93c85925f..40076f2d4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ +setuptools gevent>=21 gevent-websocket>=0.10.1 lxml>=4.3.0 |