From 1aac04d5b5dd91c9100378f5fb3f2b7a4a82b96e Mon Sep 17 00:00:00 2001 From: Ahmed Mamdouh Date: Tue, 21 Jan 2025 00:26:22 +0200 Subject: [PATCH] Remove python3.7 (#32) * remove python3.7 and add python3.13 * modify .github/workflows/run-tests.yaml accordingly * remove python3.13 --- .github/workflows/run-tests.yaml | 1 - setup.cfg | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 6ce7ef3..5b59f71 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -11,7 +11,6 @@ jobs: strategy: matrix: python-version: - - "3.7" - "3.8" - "3.9" - "3.10" diff --git a/setup.cfg b/setup.cfg index 11aa855..1afc00e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,19 +16,19 @@ classifiers = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - 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 + Topic :: Internet :: WWW/HTTP Topic :: Internet :: WWW/HTTP :: Dynamic Content [options] include_package_data = true packages = find: -python_requires = >=3.7 +python_requires = >=3.8 install_requires = psycopg2-binary >= 2 python-dateutil >= 2