From 331cace4ccf9ed3800f9c7e4542757778948bfde Mon Sep 17 00:00:00 2001 From: Andriy Kornatskyy Date: Thu, 31 Oct 2024 20:25:31 +0200 Subject: [PATCH] chore: dropped python 3.8. --- .github/workflows/tests.yml | 2 -- README.md | 2 +- setup.py | 4 ++-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 14df899..09d6885 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,8 +10,6 @@ jobs: fail-fast: false matrix: include: - - python: "3.8" - tox: py38 - python: "3.9" tox: py39 - python: "3.10" diff --git a/README.md b/README.md index f683474..7228fa9 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Resources: ## Install [wheezy.template](https://pypi.org/project/wheezy.template/) requires -[python](https://www.python.org) version 3.8+. It is independent of +[python](https://www.python.org) version 3.9+. It is independent of operating system. You can install it from [pypi](https://pypi.org/project/wheezy.template/) site: diff --git a/setup.py b/setup.py index 6c0df9d..e339b9c 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ setup( name="wheezy.template", version=VERSION, - python_requires=">=3.8", + python_requires=">=3.9", description="A lightweight template library", long_description=README, long_description_content_type="text/markdown", @@ -53,11 +53,11 @@ "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP",