From 8f73b0eebda70a10bc08b2c86306d475fb6cf715 Mon Sep 17 00:00:00 2001 From: Jorge Marques Date: Tue, 7 May 2024 17:36:11 -0300 Subject: [PATCH] Fixup min python version (3.7 -> 3.8) The correct minimum version is 3.8, as defined in the build-doc.yml; the value in the pyproject.toml was residual from the first commits. Also, 3.7 is on end-of-life. Signed-off-by: Jorge Marques --- adi_doctools/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/adi_doctools/__init__.py b/adi_doctools/__init__.py index 6875616..a21a512 100644 --- a/adi_doctools/__init__.py +++ b/adi_doctools/__init__.py @@ -9,7 +9,7 @@ from .role import setup as role_setup from .lut import get_lut -__version__ = "0.3.30" +__version__ = "0.3.31" logger = logging.getLogger(__name__) diff --git a/pyproject.toml b/pyproject.toml index e984254..7320daf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ dependencies = [ "click", "pygments >= 2.7", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dynamic = ["version"] [project.optional-dependencies]