Skip to content
This repository has been archived by the owner on Mar 13, 2022. It is now read-only.

Commit

Permalink
Capping keyring version temporarily
Browse files Browse the repository at this point in the history
The python keyring module dropped file-based backends in keyring 8.x.
Installing the keyrings.alt module brings it back, but there are other
problems.

Fixes #84.
  • Loading branch information
major committed Jan 26, 2016
1 parent b7c67be commit 6242c0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
click
configobj
keyring>=0.9.2
importlib
keyring<8.0
python-novaclient
six
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
required_packages = [
"click",
"configobj",
"keyring",
"importlib",
"keyring<8.0",
"python-novaclient",
"six"
]
Expand Down

0 comments on commit 6242c0f

Please sign in to comment.