From 8f422778df59014e4694fe80def0907d331447b8 Mon Sep 17 00:00:00 2001 From: refined-element Date: Sat, 18 Apr 2026 01:16:56 -0400 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20Correct=20repository=20URL=20metadat?= =?UTF-8?q?a=20(0.3.0=20=E2=86=92=200.3.1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrects the PyPI package metadata and README. Prior versions listed an incorrect GitHub organization in the project.urls entries and README badge/link references. The canonical source has always been refined-element/le-agent-sdk-python. - Fix Repository + Issues URLs in pyproject.toml - Fix Tests badge URL in README - Fix l402-requests link in README - Bump version 0.3.0 → 0.3.1 No functional changes. Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 4 ++-- pyproject.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e6d73a9..a894f49 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # le-agent-sdk [![PyPI version](https://img.shields.io/pypi/v/le-agent-sdk.svg)](https://pypi.org/project/le-agent-sdk/) -[![Tests](https://github.com/ArcadeLabsInc/lightning-enable-agent-sdk-python/actions/workflows/test.yml/badge.svg)](https://github.com/ArcadeLabsInc/lightning-enable-agent-sdk-python/actions/workflows/test.yml) +[![Tests](https://github.com/refined-element/le-agent-sdk-python/actions/workflows/test.yml/badge.svg)](https://github.com/refined-element/le-agent-sdk-python/actions/workflows/test.yml) [![Python 3.9+](https://img.shields.io/badge/python-3.9%2B-blue.svg)](https://pypi.org/project/le-agent-sdk/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) @@ -110,7 +110,7 @@ asyncio.run(main()) | Class | Description | |-------|-------------| -| `L402Client` | HTTP client with automatic L402 challenge-response handling. Wraps [l402-requests](https://github.com/ArcadeLabsInc/l402-requests). | +| `L402Client` | HTTP client with automatic L402 challenge-response handling. Wraps [l402-requests](https://github.com/refined-element/l402-requests). | | `AgentPricing` | Pricing model (amount, unit, per-request/per-token). | ## Protocol diff --git a/pyproject.toml b/pyproject.toml index c9b859f..4772dd8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "le-agent-sdk" -version = "0.3.0" +version = "0.3.1" description = "Python SDK for Lightning Enable Agent Service Agreements" requires-python = ">=3.10" license = "MIT" @@ -39,8 +39,8 @@ dev = [ [project.urls] Homepage = "https://lightningenable.com" -Repository = "https://github.com/ArcadeLabsInc/lightning-enable-agent-sdk-python" -Issues = "https://github.com/ArcadeLabsInc/lightning-enable-agent-sdk-python/issues" +Repository = "https://github.com/refined-element/le-agent-sdk-python" +Issues = "https://github.com/refined-element/le-agent-sdk-python/issues" [tool.pytest.ini_options] asyncio_mode = "auto" From 6dac5a2d9e595c3f506fd0909d19f5765803dc6f Mon Sep 17 00:00:00 2001 From: refined-element Date: Sat, 18 Apr 2026 01:58:15 -0400 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20Address=20Copilot=20review=20?= =?UTF-8?q?=E2=80=94=20align=20Python=20version=20baseline=20to=203.10?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pyproject.toml sets requires-python = ">=3.10" and CI runs 3.10-3.13, but the classifiers + README badge still advertised 3.9 support. - Remove "Programming Language :: Python :: 3.9" classifier - Update README badge from "Python 3.9+" to "Python 3.10+" Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 2 +- pyproject.toml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index a894f49..c3949c9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![PyPI version](https://img.shields.io/pypi/v/le-agent-sdk.svg)](https://pypi.org/project/le-agent-sdk/) [![Tests](https://github.com/refined-element/le-agent-sdk-python/actions/workflows/test.yml/badge.svg)](https://github.com/refined-element/le-agent-sdk-python/actions/workflows/test.yml) -[![Python 3.9+](https://img.shields.io/badge/python-3.9%2B-blue.svg)](https://pypi.org/project/le-agent-sdk/) +[![Python 3.10+](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://pypi.org/project/le-agent-sdk/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) Python SDK for Lightning Enable Agent Service Agreements. diff --git a/pyproject.toml b/pyproject.toml index 4772dd8..1f9d99e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12",