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 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 # 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 # Install common lib first as it changes less
COPY common /tmp/common COPY common /tmp/common

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

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

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

Loading…
Cancel
Save