From 225d75b5ebc609879f5e61f018195f1ded86f36e Mon Sep 17 00:00:00 2001 From: Heinz-Alexander Fuetterer Date: Thu, 6 Jun 2024 11:29:49 +0200 Subject: [PATCH] feat: drop support for python 3.6 and 3.7 --- .github/workflows/testing.yml | 2 +- setup.py | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 61930505..0121c7ca 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 71a69b4c..a2572a84 100644 --- a/setup.py +++ b/setup.py @@ -56,9 +56,11 @@ "Operating System :: POSIX", "Operating System :: Unix", "Operating System :: MacOS", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.6", "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", ], install_requires=base_packages, extras_require={ @@ -70,5 +72,5 @@ "use": use_packages, "gensim": gensim_packages, }, - python_requires=">=3.6", + python_requires=">=3.8", )