Skip to content

Commit

Permalink
chore: upgrade deps to prep for 0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kentbull committed Jan 10, 2025
1 parent f4a21b3 commit 458c29e
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 19 deletions.
16 changes: 16 additions & 0 deletions scripts/keri/cf/keria.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"dt": "2025-01-03T16:08:30.123456+00:00",
"keria": {
"dt": "2025-01-03T16:08:30.123457+00:00",
"curls": ["http://127.0.0.1:3902/"]
},
"iurls": [
"http://127.0.0.1:5642/oobi/BBilc4-L3tFUnfM_wJr4S4OJanAv_VmF_dJNN6vkf2Ha/controller?name=Wan&tag=witness",
"http://127.0.0.1:5643/oobi/BLskRTInXnMxWaGqcpSyMgo0nYbalW99cGZESrz3zapM/controller?name=Wil&tag=witness",
"http://127.0.0.1:5644/oobi/BIKKuvBwpmDVA4Ds-EpL5bt9OqPzWPja2LigFYZN2YfX/controller?name=Wes&tag=witness"
],
"tocks": {
"initer": 0.0,
"escrower": 1.0
}
}
Empty file removed scripts/keri/cf/main/keria.json
Empty file.
34 changes: 17 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@

setup(
name='keria',
version='0.2.0-dev6', # also change in src/keria/__init__.py
version='0.3.0', # also change in src/keria/__init__.py
license='Apache Software License 2.0',
description='KERIA: KERI Agent in the cloud',
long_description="KERIA: KERI Agent in the cloud.",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
author='Philip S. Feairheller',
author_email='[email protected]',
url='https://github.com/WebOfTrust/keria',
Expand All @@ -64,34 +65,33 @@
'Topic :: Utilities',
],
project_urls={
'Documentation': 'https://weboftrust.github.io/keridoc',
'Issue Tracker': 'https://github.com/WebOfTrust/keria/issues',
'Source': 'https://github.com/WebOfTrust/keria/issues',
},
keywords=[
"secure attribution",
"authentic data",
"discovery",
"resolver",
# eg: 'keyword1', 'keyword2', 'keyword3',
"resolver"
],
python_requires='>=3.12.2',
install_requires=[
'hio>=0.6.14',
'keri==1.2.0.dev13',
'mnemonic>=0.21',
'multicommand>=1.0.0',
'falcon>=3.1.3',
'http_sfv>=0.9.8',
'dataclasses_json>=0.5.7',
'apispec>=6.6.0',
'hio==0.6.14',
'keri==1.2.2',
'mnemonic==0.21',
'multicommand==1.0.0',
'falcon==4.0.2',
'http_sfv==0.9.9',
'dataclasses_json==0.6.7',
'apispec==6.8.1',
],
extras_require={
# eg:
# 'rst': ['docutils>=0.11'],
# ':python_version=="2.6"': ['argparse'],
'test': ['pytest', 'coverage']
},
tests_require=[
'coverage>=5.5',
'pytest>=6.2.4',
'coverage>=7.6.10',
'pytest>=8.3.4',
],
setup_requires=[
],
Expand Down
2 changes: 1 addition & 1 deletion src/keria/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
main package
"""

__version__ = '0.2.0-dev6' # also change in setup.py
__version__ = '0.3.0' # also change in setup.py

2 changes: 1 addition & 1 deletion src/keria/app/agenting.py
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ def on_get(req, rep):
pre = req.params.get("pre")
preb = pre.encode("utf-8")
events = []
for fn, dig in agent.hby.db.getFelItemPreIter(preb, fn=0):
for _, fn, dig in agent.hby.db.getFelItemPreIter(preb, fn=0):
if not (raw := agent.hby.db.cloneEvtMsg(pre=preb, fn=fn, dig=dig)):
raise falcon.HTTPInternalServerError(f"Missing event for dig={dig}.")

Expand Down

0 comments on commit 458c29e

Please sign in to comment.