Skip to content

Commit

Permalink
Merge pull request #224 from olcf/dependa_bump
Browse files Browse the repository at this point in the history
bump dependancies and 3.11+ work
  • Loading branch information
carljbai authored Oct 8, 2024
2 parents b006e07 + 0f4c32f commit d6a6536
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8]
python-version: [3.8, 3.9,3.12]

steps:
- uses: actions/checkout@v1
Expand Down
4 changes: 3 additions & 1 deletion libpkpass/commands/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ def __init__(self, cli, iddb=None, pwdb=None):
self.iddb = iddb if iddb else IdentityDB()
self.pwdbcached = pwdb is not None
self.passworddb = pwdb if pwdb else PasswordDB()
cli.register(self, self.name, self.description)
# https://github.com/python/cpython/issues/94331
if self.name not in [action.choices.keys() for action in cli.parser._actions if action.dest == "subparser_name"][0]:
cli.register(self, self.name, self.description)

def register(self, parser):
##################################################################
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
PyYAML==6.0
PyYAML==6.0.2
SQLAlchemy==1.4.30
colored==1.4.3
colored==1.4.4
cryptography==36.0.1
exrex==0.10.5
exrex==0.11.0
mock==4.0.3
pem==21.2.0
pylibyaml==0.1.0
pyperclip==1.8.2
pyseltongue==1.0.1
python-dateutil==2.8.2
ruamel.yaml.clib==0.2.6
ruamel.yaml.clib==0.2.8
ruamel.yaml==0.17.20
setuptools==65.5.1
tqdm==4.62.3

0 comments on commit d6a6536

Please sign in to comment.