Skip to content

Commit

Permalink
KSM CLI: Bump dependencies for KSM Python SDK and added storage (#471)
Browse files Browse the repository at this point in the history
* KSM CLI: Bump dependencies for KSM Python SDK and added storage
  • Loading branch information
maksimu authored May 19, 2023
1 parent b4089ae commit 7c5b92f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion integration/keeper_secrets_manager_cli/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
keeper-secrets-manager-core==16.5.1
keeper-secrets-manager-core>=16.5.4
keeper-secrets-manager-helper
keeper-secrets-manager-storage>=1.0.1
prompt-toolkit~=2.0
jsonpath-rw-ext
colorama
Expand Down
9 changes: 5 additions & 4 deletions integration/keeper_secrets_manager_cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@
long_description = f.read()

install_requires = [
'keeper-secrets-manager-core==16.5.1',
'keeper-secrets-manager-core>=16.5.4',
'keeper-secrets-manager-helper',
'keeper-secrets-manager-storage>=1.0.1',
'prompt-toolkit~=2.0',
'click',
'click_help_colors',
'click-repl',
'jsonpath-rw-ext',
'colorama',
'importlib_metadata',
'click',
'click_help_colors',
'click-repl',
'pyyaml',
'update-checker',
'psutil'
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/helper/tests/v3/v3_field_type_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def test_load_map(self):
get_field_type_map()

# Nice test to make sure we loaded all the fields, if we add more fields this will fail ... but in a good way.
self.assertEqual(38, len(field_map.keys()))
self.assertEqual(39, len(field_map.keys()))

# Check if we get a Login class
self.assertEqual(get_class_by_type("login"), Login)
Expand Down

0 comments on commit 7c5b92f

Please sign in to comment.