From 7ff4c15498ec587537c63f511b49f3a5f82ac9a4 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Tue, 22 Oct 2024 12:02:40 -0700 Subject: [PATCH] Lower version requirement --- circuitmatter/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/circuitmatter/__init__.py b/circuitmatter/__init__.py index 2f0157f..3c8f657 100644 --- a/circuitmatter/__init__.py +++ b/circuitmatter/__init__.py @@ -14,7 +14,7 @@ from . import session from .device_types.utility.root_node import RootNode -__version__ = "0.2.2" +__version__ = "0.2.3" class CircuitMatter: diff --git a/pyproject.toml b/pyproject.toml index 382dc12..8dc42b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [{name = "Scott Shawcroft", email = "scott@adafruit.com"}] license = {file = "LICENSE"} classifiers = ["License :: OSI Approved :: MIT License"] dynamic = ["version", "description"] -requires-python = ">=3.12" +requires-python = ">=3.11" readme = "README.md" dependencies = [ "cryptography",