diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2023-01-09 17:02:33 -0500 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2023-01-09 19:33:39 -0500 |
commit | d87c64c9f57de0517442fc180929a29bfd964f0a (patch) | |
tree | dd70c9498725856f0f39a9b99866186b872ff492 | |
parent | 9af3a823985bff447e7203360383e8fccf53da63 (diff) |
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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(): |