From de8f1e483055718628397a1866fafb81a9632dbd Mon Sep 17 00:00:00 2001 From: Edgars Date: Mon, 20 Apr 2026 14:10:23 +0100 Subject: [PATCH] fix(gltest): bump genlayer-py to >=0.12.1 for Bradbury RPC fix genlayer-py 0.11.0 shipped testnet_bradbury with the wrong RPC URL (pointed at the Asimov endpoint). Fixed upstream in 0.12.1 via genlayerlabs/genlayer-py@496cd07 "fix: use HTTPS domain RPC URLs for testnets". Without this bump, `gltest --network testnet_bradbury` would silently talk to the Asimov RPC instead of Bradbury. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 09e488a..9e605ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ readme = "README.md" requires-python = ">=3.12" dependencies = [ "pytest", - "genlayer-py>=0.11.0,<0.12.0", + "genlayer-py>=0.12.1,<0.13.0", "colorama>=0.4.6", "pyyaml", "python-dotenv"