From 7d935212a74c4854bbc29a617c80a7125280add9 Mon Sep 17 00:00:00 2001 From: Mathias Brulatout Date: Thu, 7 Nov 2024 17:59:23 +0100 Subject: [PATCH] ci: add 3.13 and drop support for EOL 3.8 (#89) * ci: add 3.13 and drop support for EOL 3.8 * ci:update tox envlist --------- Co-authored-by: Mathias Brulatout --- .github/workflows/main.yml | 2 +- README.md | 2 +- setup.py | 2 +- tox.ini | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index af0a985..965db4f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,7 +9,7 @@ jobs: fail-fast: false max-parallel: 5 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@v4 diff --git a/README.md b/README.md index d5569cc..120865c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# py-consul [![PyPi version](https://img.shields.io/pypi/v/py-consul.svg)](https://pypi.python.org/pypi/py-consul/) [![Python version](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/) ![Status](https://img.shields.io/badge/status-maintained-green.svg) +# py-consul [![PyPi version](https://img.shields.io/pypi/v/py-consul.svg)](https://pypi.python.org/pypi/py-consul/) [![Python version](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/) ![Status](https://img.shields.io/badge/status-maintained-green.svg) Status ----------- diff --git a/setup.py b/setup.py index 01c876a..953cd6c 100644 --- a/setup.py +++ b/setup.py @@ -54,10 +54,10 @@ def run(self): "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "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", ], ) diff --git a/tox.ini b/tox.ini index 3672542..e4f0317 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = lint,py38,py39,py10,py11,py12 +envlist = lint,py39,py10,py11,py12,py13 toxworkdir = {env:TEMPDIR:/tmp/.tox}-{env:JOB_NAME:build}-{env:BUILD_NUMBER:current}/{env:BUILD_ID:unknown} [testenv]