Unpin gevent as that was a workaround for a py2 issue

chrusher/backfiller_error_handler
Mike Lang 3 years ago committed by Mike Lang
parent 714a16bac4
commit 62bd6539ea

@ -6,7 +6,7 @@ setup(
packages = find_packages(), packages = find_packages(),
install_requires = [ install_requires = [
"argh", "argh",
"gevent==1.5a2", "gevent",
"psycogreen", "psycogreen",
"psycopg2", "psycopg2",
"python-dateutil", "python-dateutil",

@ -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",
], ],

@ -6,7 +6,7 @@ setup(
packages = find_packages(), packages = find_packages(),
install_requires = [ install_requires = [
"argh", "argh",
"gevent==1.5a2", "gevent",
"prometheus-client", "prometheus-client",
"psycogreen", "psycogreen",
"psycopg2", "psycopg2",

@ -7,7 +7,7 @@ setup(
install_requires = [ install_requires = [
"argh", "argh",
"python-dateutil", "python-dateutil",
"gevent==1.5a2", "gevent",
"monotonic", "monotonic",
"prometheus-client==0.7.1", # locked version as we rely on internals "prometheus-client==0.7.1", # locked version as we rely on internals
"requests", "requests",

@ -6,7 +6,7 @@ setup(
packages = find_packages(), packages = find_packages(),
install_requires = [ install_requires = [
"argh", "argh",
"gevent==1.5a2", "gevent",
"prometheus-client", "prometheus-client",
"psycogreen", "psycogreen",
"psycopg2", "psycopg2",

@ -8,7 +8,7 @@ setup(
"argh", "argh",
"python-dateutil", "python-dateutil",
"flask", "flask",
"gevent==1.5a2", "gevent",
"monotonic", "monotonic",
"prometheus-client", "prometheus-client",
"wubloader-common", "wubloader-common",

@ -6,7 +6,7 @@ setup(
packages = find_packages(), packages = find_packages(),
install_requires = [ install_requires = [
'argh', 'argh',
'gevent==1.5a2', 'gevent',
'matplotlib', 'matplotlib',
'numpy', 'numpy',
'psycogreen', 'psycogreen',

@ -6,7 +6,7 @@ setup(
packages = find_packages(), packages = find_packages(),
install_requires = [ install_requires = [
"argh", "argh",
"gevent==1.5a2", "gevent",
"prometheus-client==0.7.1", # locked version as we rely on internals "prometheus-client==0.7.1", # locked version as we rely on internals
"psycogreen", "psycogreen",
"psycopg2", "psycopg2",

@ -7,7 +7,7 @@ setup(
install_requires = [ install_requires = [
"argh", "argh",
"flask", "flask",
"gevent==1.5a2", "gevent",
"google-auth", "google-auth",
"psycogreen", "psycogreen",
"psycopg2", "psycopg2",

Loading…
Cancel
Save