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.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
from functools import cached_property
|
from functools import cached_property
|
||||||
import json
|
import json
|
||||||
from typing import TYPE_CHECKING, Generic, Iterator, Type, TypeVar
|
from typing import TYPE_CHECKING, Generic, Iterator, TypeVar
|
||||||
|
|
||||||
from pydantic import BaseModel
|
from pydantic import BaseModel
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ version = "0.1.0"
|
|||||||
description = "Oxidized API client"
|
description = "Oxidized API client"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = { file = "LICENSE" }
|
license = { file = "LICENSE" }
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.10"
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"License :: OSI Approved :: Apache Software License",
|
"License :: OSI Approved :: Apache Software License",
|
||||||
|
|||||||
Reference in New Issue
Block a user