From 77f5e1b5836235ac488b4ea7b25253bb5feba013 Mon Sep 17 00:00:00 2001 From: Michel Oosterhof Date: Fri, 10 May 2024 21:25:37 +0800 Subject: [PATCH] remove 3.8 (#2170) --- .github/workflows/tox.yml | 2 +- README.rst | 2 +- pyproject.toml | 2 +- tox.ini | 3 +-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 3d3084f1..482191ae 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9", "pypy-3.10"] + python-version: ["3.9", "3.10", "3.11", "3.12", "pypy-3.9", "pypy-3.10"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/README.rst b/README.rst index dfcb490f..3f1057c2 100644 --- a/README.rst +++ b/README.rst @@ -85,7 +85,7 @@ Requirements Software required to run locally: -* Python 3.8+ +* Python 3.9+ * python-virtualenv For Python dependencies, see `requirements.txt `_. diff --git a/pyproject.toml b/pyproject.toml index c3597f5f..a68e80ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ license.text="BSD-3-Clause" authors = [ {name = "Michel Oosterhof", email="michel@oosterhof.net"}, ] maintainers = [ {name = "Michel Oosterhof", email="michel@oosterhof.net"}, ] keywords=["ssh", "telnet", "honeypot"] -requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*, <4" +requires-python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*, !=3.8.*, <4" readme="README.rst" classifiers=[ "Development Status :: 5 - Production/Stable", diff --git a/tox.ini b/tox.ini index 2b73ed0a..54c35309 100644 --- a/tox.ini +++ b/tox.ini @@ -1,12 +1,11 @@ [tox] skipsdist = True -envlist = lint,docs,typing,py38,py39,py310,py311,py312,pypy39, pypy310 +envlist = lint,docs,typing,py39,py310,py311,py312,pypy39, pypy310 deps = -r{toxinidir}/requirements.txt skip_missing_interpreters = True [gh-actions] python = - 3.8: py38 3.9: py39 3.10: py310, lint, docs, typing 3.11: py311