diff mbox series

[meta-python,2/3] python3-eth-account: Upgrade 0.12.1 -> 0.13.7

Message ID 20250715110738.1033272-2-leon.anavi@konsulko.com
State Under Review
Headers show
Series [meta-python,1/3] python3-ckzg: Add recipe version 2.1.1 | expand

Commit Message

Leon Anavi July 15, 2025, 11:07 a.m. UTC
Upgrade to release 0.13.7:

- Fix issues with the json schema generation for Pydantic models
  (SignedSetCodeAuthorization) and simplify the serialization by
  moving a misplaced @field_validator decorator above @classmethod
  (not below it).
- Update and clarify documentation for authorization signing.

License-Update: Update years

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...eth-account_0.12.1.bb => python3-eth-account_0.13.7.bb} | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-eth-account_0.12.1.bb => python3-eth-account_0.13.7.bb} (65%)
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python/python3-eth-account_0.12.1.bb b/meta-python/recipes-devtools/python/python3-eth-account_0.13.7.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-eth-account_0.12.1.bb
rename to meta-python/recipes-devtools/python/python3-eth-account_0.13.7.bb
index 867aaaf025..a3ae8a7802 100644
--- a/meta-python/recipes-devtools/python/python3-eth-account_0.12.1.bb
+++ b/meta-python/recipes-devtools/python/python3-eth-account_0.13.7.bb
@@ -2,9 +2,11 @@  SUMMARY = "Assign Ethereum transactions and messages with local private keys."
 HOMEPAGE = "https://github.com/ethereum/eth-account"
 SECTION = "devel/python"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=16ffc86adf4293d4cfb204e77d62cfe6"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=a26e64020156e806cf0054a6d504b301"
 
-SRC_URI[sha256sum] = "0374c5886f35780e1f23e50ce6b0482f3387646eceda544e97d69f17f6c216ee"
+SRC_URI[sha256sum] = "5853ecbcbb22e65411176f121f5f24b8afeeaf13492359d254b16d8b18c77a46"
+
+PYPI_PACKAGE = "eth_account"
 
 inherit pypi setuptools3
 
@@ -17,4 +19,5 @@  RDEPENDS:${PN} += " \
     python3-eth-utils \
     python3-hexbytes \
     python3-rlp \
+    python3-ckzg \
 "