From e5e08e8410de8e3df2674263238393453e8a6db8 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 20 Mar 2019 08:57:39 -0400 Subject: [PATCH] Update pin to 1.7.x --- src/allmydata/_auto_deps.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/allmydata/_auto_deps.py b/src/allmydata/_auto_deps.py index 78fa672fe..38b98e59c 100644 --- a/src/allmydata/_auto_deps.py +++ b/src/allmydata/_auto_deps.py @@ -100,10 +100,10 @@ install_requires = [ # Eliot is contemplating dropping Python 2 support. Stick to a version we # know works on Python 2.7. Because we don't have support for `==` - # constraints, pin 1.6.x this way. I feel pretty safe betting that we - # won't end up stuck on Eliot 1.6.100 with a critical fix only present in - # 1.6.101. And if we do, I know how to deal with that situation. - "eliot >= 1.6.0, <= 1.6.100", + # constraints, pin 1.7.x this way. I feel pretty safe betting that we + # won't end up stuck on Eliot 1.7.100 with a critical fix only present in + # 1.7.101. And if we do, I know how to deal with that situation. + "eliot >= 1.7.0, <= 1.7.100", # A great way to define types of values. "attrs >= 18.2.0",