aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJake Heaton2020-06-10 09:37:40 -0600
committerJake Heaton2020-06-10 09:56:25 -0600
commit13347b0d3b02c2b910c1d0421721c5026012dbb2 (patch)
tree57d9e6255f3548af7de12c8b05ab40d167b2e87f
parent68f453085c305d1d7bc13609f41ab074c60d6e81 (diff)
downloadeventmq-13347b0d3b02c2b910c1d0421721c5026012dbb2.tar.gz
eventmq-13347b0d3b02c2b910c1d0421721c5026012dbb2.zip
Change six requirement to require >= 1.14
What? ===== I changed six==1.14.0 to six>=1.14,<2 Why? ===== Six 1.15.0 is out now, and we're getting version conflicts because pip is installing 1.15.0 for other stuff but requiring 1.14.0 for eventmq.
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index a09eda0..f80264e 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,7 @@ setup(
20 packages=find_packages(), 20 packages=find_packages(),
21 install_requires=[ 21 install_requires=[
22 'pyzmq==18.1.0', 22 'pyzmq==18.1.0',
23 'six==1.14.0', 23 'six>=1.14,<2',
24 'monotonic==0.4', 24 'monotonic==0.4',
25 'croniter==0.3.10', 25 'croniter==0.3.10',
26 'future==0.15.2', 26 'future==0.15.2',