From e74f6f88cb52ca8b842b340ef56d71d8eb9ea901 Mon Sep 17 00:00:00 2001 From: Andriy Kornatskyy Date: Sat, 26 Oct 2024 20:08:50 +0300 Subject: [PATCH] chore: dropped python 3.8. --- .github/workflows/tests.yml | 2 -- README.md | 2 +- setup.py | 3 +-- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c3420ca..904481a 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 1ba790d..4a61178 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Resources: ## Install [wheezy.http](https://pypi.org/project/wheezy.http/) requires -[python](https://www.python.org) version 3.8+. It is independent of operating +[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.http/) site: diff --git a/setup.py b/setup.py index cb9872c..23de22d 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ setup( name="wheezy.http", version=VERSION, - python_requires=">=3.8", + python_requires=">=3.9", description="A lightweight http request-response library", long_description=README, long_description_content_type="text/markdown", @@ -50,7 +50,6 @@ "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",