From 61e2ad273994432216e7d0d8c9361613f53edde5 Mon Sep 17 00:00:00 2001 From: Rohit Gupta Date: Sun, 7 Apr 2024 16:38:25 +0530 Subject: [PATCH] Remove support for python 3.7 as it reached eol --- .github/workflows/ci.yml | 2 +- pyproject.toml | 3 +-- setup.py | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b10857a..4828695 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,11 @@ jobs: fail-fast: false matrix: python-version: - - '3.7' - '3.8' - '3.9' - '3.10' - '3.11' + - '3.12' - 3.x os: - ubuntu-latest diff --git a/pyproject.toml b/pyproject.toml index 54b17bd..5b57509 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,6 @@ classifiers = [ "Topic :: Utilities", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -27,7 +26,7 @@ include = [ ] [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" requests = "*" tablib = "*" diff --git a/setup.py b/setup.py index 60cad96..92403ed 100644 --- a/setup.py +++ b/setup.py @@ -73,11 +73,11 @@ def run(self): "Topic :: Utilities", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "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", "License :: OSI Approved :: BSD License", ], # $ setup.py publish support.