diff options
| author | Jake Heaton | 2020-06-10 09:37:40 -0600 |
|---|---|---|
| committer | Jake Heaton | 2020-06-10 09:56:25 -0600 |
| commit | 13347b0d3b02c2b910c1d0421721c5026012dbb2 (patch) | |
| tree | 57d9e6255f3548af7de12c8b05ab40d167b2e87f /setup.py | |
| parent | 68f453085c305d1d7bc13609f41ab074c60d6e81 (diff) | |
| download | eventmq-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.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -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', |