From a07ef8c57168ff9b141dc32e841475f1861bd4c7 Mon Sep 17 00:00:00 2001 From: Erez Date: Tue, 26 Nov 2024 12:36:11 +0700 Subject: [PATCH] remove support for python 3.8 as python-gitlab does not support it anymore --- .github/workflows/python-app.yml | 2 +- setup.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 7d3c5c2..7e2701b 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - python: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python: ["3.9", "3.10", "3.11", "3.12"] runs-on: ubuntu-latest steps: diff --git a/setup.py b/setup.py index 73796f2..3ca2164 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,6 @@ def run(self): 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11',