From f47bc0ba056b391313d30ea0eefaca84c1a460ff Mon Sep 17 00:00:00 2001 From: MaartenGr Date: Mon, 23 Dec 2024 10:58:45 +0100 Subject: [PATCH 1/3] Test python versions --- .github/workflows/testing.yml | 2 +- README.md | 4 ++-- setup.py | 6 ++---- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 2097ec1..8887b63 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8] + python-version: [3.9, 3.10, 3.11] steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 60a6e0e..f14ebcf 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -[![PyPI - Python](https://img.shields.io/badge/python-3.6%20|%203.7%20|%203.8-blue.svg)](https://pypi.org/project/keybert/) -[![PyPI - License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/MaartenGr/keybert/blob/master/LICENSE) +[![PyPI - Python](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11-blue.svg)](https://pypi.org/project/polyfuzz/) +[![PyPI - License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/MaartenGr/polyfuzz/blob/master/LICENSE) [![PyPI - PyPi](https://img.shields.io/pypi/v/polyfuzz)](https://pypi.org/project/polyfuzz/) [![Build](https://img.shields.io/github/workflow/status/MaartenGr/polyfuzz/Code%20Checks/master)](https://pypi.org/project/polyfuzz/) [![docs](https://img.shields.io/badge/docs-Passing-green.svg)](https://maartengr.github.io/PolyFuzz/) diff --git a/setup.py b/setup.py index 7363766..ecfc56a 100644 --- a/setup.py +++ b/setup.py @@ -86,9 +86,7 @@ "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", ], install_requires=base_packages, extras_require={ @@ -101,5 +99,5 @@ "use": use_packages, "gensim": gensim_packages, }, - python_requires='>=3.6', + python_requires='>=3.9', ) From 0e7aca79fc906c5131290698cddd8bcb0954558d Mon Sep 17 00:00:00 2001 From: MaartenGr Date: Mon, 23 Dec 2024 11:00:19 +0100 Subject: [PATCH 2/3] Fix workflow --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 8887b63..798ea7a 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.9, 3.10, 3.11] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 From bf861f75de0a67069f4e8a151ba2715801192f9f Mon Sep 17 00:00:00 2001 From: MaartenGr Date: Mon, 23 Dec 2024 11:07:39 +0100 Subject: [PATCH 3/3] doc changes --- README.md | 2 +- setup.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f14ebcf..36bb206 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -[![PyPI - Python](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11-blue.svg)](https://pypi.org/project/polyfuzz/) +[![PyPI - Python](https://img.shields.io/badge/python-3.9%20|%203.10%20|%203.11%20|%203.12-blue.svg)](https://pypi.org/project/polyfuzz/) [![PyPI - License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/MaartenGr/polyfuzz/blob/master/LICENSE) [![PyPI - PyPi](https://img.shields.io/pypi/v/polyfuzz)](https://pypi.org/project/polyfuzz/) [![Build](https://img.shields.io/github/workflow/status/MaartenGr/polyfuzz/Code%20Checks/master)](https://pypi.org/project/polyfuzz/) diff --git a/setup.py b/setup.py index ecfc56a..c34ecd7 100644 --- a/setup.py +++ b/setup.py @@ -87,6 +87,9 @@ "Operating System :: Unix", "Operating System :: MacOS", "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={