Skip to content

Commit 8a44f92

Browse files
committed
Update dependencies
1 parent 5bd5345 commit 8a44f92

File tree

7 files changed

+1094
-490
lines changed

7 files changed

+1094
-490
lines changed

docs/requirements.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ markupsafe==2.1.5 ; python_full_version >= "3.8.1" and python_full_version < "4.
4242
mccabe==0.7.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
4343
mnemonic==0.21 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
4444
mypy-extensions==1.0.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
45-
mypy==1.4.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
45+
mypy==1.11.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
4646
ogmios==1.2.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
4747
orjson==3.10.7 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
4848
oscrypto==1.3.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
@@ -69,7 +69,7 @@ pytz==2024.2 ; python_full_version >= "3.8.1" and python_version < "3.9"
6969
pywin32==306 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0" and sys_platform == "win32"
7070
requests==2.32.3 ; python_full_version >= "3.8.1" and python_version < "4"
7171
retry==0.9.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
72-
setuptools==69.5.1 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
72+
setuptools==75.1.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
7373
six==1.16.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
7474
snowballstemmer==2.2.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
7575
sphinx-copybutton==0.5.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
@@ -84,7 +84,6 @@ sphinxcontrib-qthelp==1.0.3 ; python_full_version >= "3.8.1" and python_full_ver
8484
sphinxcontrib-serializinghtml==1.1.5 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
8585
tomli==2.0.1 ; python_full_version >= "3.8.1" and python_full_version <= "3.11.0a6"
8686
typeguard==4.3.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
87-
types-requests==2.31.0.10 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
8887
typing-extensions==4.12.2 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"
8988
urllib3==2.2.3 ; python_full_version >= "3.8.1" and python_version < "4"
9089
websocket-client==1.8.0 ; python_full_version >= "3.8.1" and python_full_version < "4.0.0"

examples/full_stack/poetry.lock

Lines changed: 1041 additions & 424 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/full_stack/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ description = ""
55
authors = ["Your Name <[email protected]>"]
66

77
[tool.poetry.dependencies]
8-
python = "^3.7"
8+
python = "^3.8.1"
99
Flask = "^2.0.3"
10-
pycardano = "^0.7.2"
10+
pycardano = "^0.12.0"
1111

1212
[tool.poetry.dev-dependencies]
1313

integration-test/docker-compose-chang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ services:
5656
max-file: "10"
5757

5858
ogmios:
59-
image: cardanosolutions/ogmios:v6.5.0
59+
image: cardanosolutions/ogmios:v6.8.0
6060
platform: linux/amd64
6161
environment:
6262
NETWORK: "${NETWORK:-local-alonzo}"

poetry.lock

Lines changed: 42 additions & 51 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pycardano/serialization.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -829,8 +829,8 @@ class DictCBORSerializable(CBORSerializable):
829829
typeguard.TypeCheckError: int is not an instance of str
830830
"""
831831

832-
KEY_TYPE = Any
833-
VALUE_TYPE = Any
832+
KEY_TYPE = Type[Any]
833+
VALUE_TYPE = Type[Any]
834834

835835
def __init__(self, *args, **kwargs):
836836
self.data = dict(*args, **kwargs)
@@ -906,12 +906,12 @@ def from_primitive(cls: Type[DictBase], value: dict) -> DictBase:
906906
restored = cls()
907907
for k, v in value.items():
908908
k = (
909-
cls.KEY_TYPE.from_primitive(k)
909+
cls.KEY_TYPE.from_primitive(k) # type: ignore
910910
if isclass(cls.KEY_TYPE) and issubclass(cls.KEY_TYPE, CBORSerializable)
911911
else k
912912
)
913913
v = (
914-
cls.VALUE_TYPE.from_primitive(v)
914+
cls.VALUE_TYPE.from_primitive(v) # type: ignore
915915
if isclass(cls.VALUE_TYPE)
916916
and issubclass(cls.VALUE_TYPE, CBORSerializable)
917917
else v

pyproject.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,7 @@ sphinx-copybutton = "^0.5.0"
5151
retry = "^0.9.2"
5252
Flask = "^2.0.3"
5353
pytest-xdist = "^3.5.0"
54-
mypy = "1.4.1"
55-
types-requests = "2.31.0.10"
56-
57-
[tool.poetry.group.dev.dependencies]
58-
setuptools = "^69.5.1"
54+
mypy = "1.11.2"
5955

6056
[build-system]
6157
requires = ["poetry-core>=1.0.0"]
@@ -69,6 +65,7 @@ markers = [
6965
"post_alonzo",
7066
"single",
7167
"CardanoCLI",
68+
"post_chang"
7269
]
7370

7471

0 commit comments

Comments
 (0)