From 6faea01474b87d0fb1094f5eb7351321d17c44a4 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Mon, 24 Jul 2023 15:55:42 -0400 Subject: [PATCH] Increased minimum Python version to 3.9 to ensure Ansible compatibility. --- pyproject.toml | 8 +++----- workflow-support/versions.json | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 14a687f..46ed5fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ license = { text="Apache-2.0" } authors = [ { name="Kevin P. Fleming", email="jinjanator@kevin.km6g.us" }, ] -requires-python = ">=3.8" +requires-python = ">=3.9" classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console", @@ -22,7 +22,6 @@ classifiers = [ "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", @@ -118,7 +117,6 @@ dependencies = [ [[tool.hatch.envs.ci.matrix]] python = [ -"3.8", "3.9", "3.10", "3.11", @@ -181,7 +179,7 @@ line-length = 90 [tool.ruff] src = ["src", "tests"] format = "grouped" -target-version = "py38" +target-version = "py39" select = ["ALL"] ignore = [ @@ -219,7 +217,7 @@ addopts = [ ] [tool.mypy] -python_version = 3.8 +python_version = 3.9 namespace_packages = true explicit_package_bases = true check_untyped_defs = true diff --git a/workflow-support/versions.json b/workflow-support/versions.json index 2dc44cb..5fdb6f0 100644 --- a/workflow-support/versions.json +++ b/workflow-support/versions.json @@ -1 +1 @@ -versions={"python": ["3.8", "3.9", "3.10", "3.11", "3.12"]} +versions={"python": ["3.9", "3.10", "3.11", "3.12"]}