Skip to content

Commit f309c22

Browse files
committed
Changes to account for dev PyPi release of KERIpy
Signed-off-by: pfeairheller <[email protected]>
1 parent 5e4c905 commit f309c22

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
],
6666
python_requires='>=3.12.1',
6767
install_requires=[
68-
'keri>=1.1.6',
68+
'keri>=1.2.0-dev0',
6969
'multicommand>=1.0.0',
7070
'requests>=2.28',
7171
'http_sfv>=0.9.8',

src/signify/app/credentialing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def serialize(serder, anc):
9595
if len(atc) % 4:
9696
raise ValueError("Invalid attachments size={}, nonintegral"
9797
" quadlets.".format(len(atc)))
98-
pcnt = coring.Counter(code=coring.CtrDex.AttachedMaterialQuadlets,
98+
pcnt = coring.Counter(code=coring.CtrDex.AttachmentGroup,
9999
count=(len(atc) // 4)).qb64b
100100
msg = bytearray(serder.raw)
101101
msg.extend(pcnt)

tests/core/test_authing.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from keri import kering
1010
from keri.core import serdering
1111
from keri.core.coring import Tiers
12+
from keri.kering import Serials, versify
1213
from mockito import mock, unstub, expect, verifyNoUnwantedInteractions
1314
import pytest
1415

@@ -131,7 +132,7 @@ def test_controller_derive():
131132
assert serder.raw == raw
132133

133134
from keri.core import coring
134-
e1 = dict(v=coring.Vstrings.json,
135+
e1 = dict(v=versify(kind=Serials.json, size=0),
135136
t="rot",
136137
d="",
137138
i="EMPYj-h2OoCyPGQoUUd1tLUYe62YD_8A3jjXxqYawLcV",

tests/core/test_keeping.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -845,7 +845,7 @@ def test_base_keeper_sign_indexed(indexed, indices, ondices):
845845
from keri.core.coring import Signer
846846
mock_signer_one = mock(spec=Signer, strict=True)
847847

848-
from keri.core.coring import Siger
848+
from keri.core import Siger
849849
mock_cigar = mock({'qb64': 'an indexed signature'}, spec=Siger, strict=True)
850850
expect(mock_signer_one, times=1).sign(b'ser bytes', index=0, only=False, ondex=0).thenReturn(mock_cigar)
851851

0 commit comments

Comments
 (0)