From 5adc8bcb6d0a39905f3340ded03f3662c8b3c2a4 Mon Sep 17 00:00:00 2001 From: Ryan Nowakowski Date: Thu, 20 Jun 2019 19:03:07 -0500 Subject: [PATCH] lock keyring version to 8.4.1 The most recent versions of keyring remove support for Python 2. We need to lock the keyring version to one that still supports Python 2. I've chosen 8.4.1 because that's the version specified in the requirements.txt --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3b77751..11479f6 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ }, install_requires=[ "argparse", - "keyring", + "keyring==8.4.1", "lxml", "ofxhome", "ofxparse>0.8",