Skip to content

Commit

Permalink
Fixup min python version (3.7 -> 3.8)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
gastmaier committed May 7, 2024
1 parent 58ed2bb commit 8f73b0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion adi_doctools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies = [
"click",
"pygments >= 2.7",
]
requires-python = ">=3.7"
requires-python = ">=3.8"
dynamic = ["version"]

[project.optional-dependencies]
Expand Down

0 comments on commit 8f73b0e

Please sign in to comment.