From 09b150bc56c90afea4679a5a56c1805dcda31925 Mon Sep 17 00:00:00 2001 From: Brad Schoening Date: Wed, 10 Jul 2024 21:07:18 -0400 Subject: [PATCH 1/3] Corrected python version badge URL --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 82bb34e..6d45a43 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [![Build Status](https://github.com/mysto/python-fpe/actions/workflows/build-py.yml/badge.svg)](https://github.com/mysto/python-fpe/actions) [![Coverage Status](https://coveralls.io/repos/github/mysto/python-fpe/badge.svg?branch=main)](https://coveralls.io/github/mysto/python-fpe?branch=main) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) -![PyPI - Python Version](https://img.shields.io/pypi/pyversions/cqlsh) +![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ff3) [![Downloads](https://pepy.tech/badge/ff3)](https://pepy.tech/project/ff3) [![PyPI version](https://badge.fury.io/py/ff3.svg)](https://badge.fury.io/py/ff3) From 862baebcd22d900429bfb98bcaed6465dab25a96 Mon Sep 17 00:00:00 2001 From: Brad Schoening <5796692+bschoening@users.noreply.github.com> Date: Wed, 30 Oct 2024 16:21:44 -0400 Subject: [PATCH 2/3] Remove Python 3.8, add 3.13 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index de793fc..2654df1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,11 +18,11 @@ classifiers = Operating System :: OS Independent Programming Language :: Python Programming Language :: Python :: 3 - 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 + Programming Language :: Python :: 3.13 [options] packages = ff3 From d80ea5977cf3338f995c374662aa7c036e425c5c Mon Sep 17 00:00:00 2001 From: Brad Schoening Date: Wed, 30 Oct 2024 18:18:19 -0400 Subject: [PATCH 3/3] Updated versions --- .github/workflows/build-py.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-py.yml b/.github/workflows/build-py.yml index e10a3e8..0082b38 100644 --- a/.github/workflows/build-py.yml +++ b/.github/workflows/build-py.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v3