Unpin gevent

borken-flask
HeNine 3 years ago
parent 11164271b2
commit 1d62e6d889

@ -4,7 +4,7 @@ FROM alpine:3.14
RUN apk --update add py3-pip g++ python3-dev libffi-dev musl-dev postgresql-dev file make busybox-extras
# Install gevent so that we don't need to re-install it when common changes
RUN pip install gevent==1.5a2 greenlet==0.4.16
RUN pip install gevent
# Install common lib first as it changes less
COPY common /tmp/common

@ -7,8 +7,7 @@ setup(
install_requires = [
"argh",
"psycopg2",
"gevent==1.5a2",
"greenlet==0.4.16",
"gevent",
"psycogreen",
"wubloader-common",
"python-dateutil",

@ -342,7 +342,7 @@ def ffmpeg_cut_stdin(output_file, cut_start, duration, encode_args):
# permission to "overwrite" it.
'-y',
]
args = map(str, args)
args = list(map(str, args))
logging.info("Running full cut with args: {}".format(" ".join(args)))
return subprocess.Popen(args, stdin=subprocess.PIPE, stdout=output_file)

@ -5,7 +5,7 @@ setup(
version = "0.0.0",
packages = find_packages(),
install_requires = [
"gevent==1.5a2",
"gevent",
"monotonic",
"prometheus-client",
],

Loading…
Cancel
Save