From 5a4cfa18d4b6dceb861c715516ffcef8d5ff4d53 Mon Sep 17 00:00:00 2001 From: IluaAir Date: Mon, 27 Apr 2026 09:50:22 +0300 Subject: [PATCH] Update Python version requirement and clean up imports - Changed the required Python version in `pyproject.toml` from 3.11 to 3.10 to broaden compatibility. - Removed an unused import from `oxi/conf.py` to streamline the code and improve readability. --- oxi/conf.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/oxi/conf.py b/oxi/conf.py index cc2a9ff..acc2b70 100644 --- a/oxi/conf.py +++ b/oxi/conf.py @@ -1,6 +1,6 @@ from functools import cached_property import json -from typing import TYPE_CHECKING, Generic, Iterator, Type, TypeVar +from typing import TYPE_CHECKING, Generic, Iterator, TypeVar from pydantic import BaseModel diff --git a/pyproject.toml b/pyproject.toml index d30eb06..76e2c37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "0.1.0" description = "Oxidized API client" readme = "README.md" license = { file = "LICENSE" } -requires-python = ">=3.11" +requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3", "License :: OSI Approved :: Apache Software License",