mirror of https://github.com/cowrie/cowrie.git
remove 3.8 (#2170)
This commit is contained in:
parent
cde5ca8dff
commit
77f5e1b583
|
@ -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 }}
|
||||
|
|
|
@ -85,7 +85,7 @@ Requirements
|
|||
|
||||
Software required to run locally:
|
||||
|
||||
* Python 3.8+
|
||||
* Python 3.9+
|
||||
* python-virtualenv
|
||||
|
||||
For Python dependencies, see `requirements.txt <https://github.com/cowrie/cowrie/blob/master/requirements.txt>`_.
|
||||
|
|
|
@ -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",
|
||||
|
|
3
tox.ini
3
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
|
||||
|
|
Loading…
Reference in New Issue