summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-01-09 17:02:33 -0500
committerJeff Forcier <jeff@bitprophet.org>2023-01-09 19:33:39 -0500
commitd87c64c9f57de0517442fc180929a29bfd964f0a (patch)
treedd70c9498725856f0f39a9b99866186b872ff492
parent9af3a823985bff447e7203360383e8fccf53da63 (diff)
downloadparamiko-d87c64c9f57de0517442fc180929a29bfd964f0a.tar.gz
Bump invoke requirement to modern rev
May technically function with invoke 1.x but much easier to support if we ensure everything's working with the same transitive dep tree.
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index a153c076..a8207ac2 100644
--- a/setup.py
+++ b/setup.py
@@ -41,7 +41,7 @@ extras_require = {
'pywin32>=2.1.8;platform_system=="Windows"',
],
"ed25519": ["pynacl>=1.0.1", "bcrypt>=3.1.3"],
- "invoke": ["invoke>=1.3"],
+ "invoke": ["invoke>=2.0"],
}
everything = []
for subdeps in extras_require.values():