Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v7.0.0
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ pip-log.txt
.mr.developer.cfg

.DS_Store
.env

MANIFEST

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Copied from http://pytelnetsrvlib.sourceforge.net/
and modified to support gevent and eventlet, better input handling, clean asynchronous messages and much more.
Licensed under the LGPL, as per the SourceForge notes.

**Requires Python 3.9 or later.**
**Requires Python 3.10 or later.**

This library allows you to easily create a Telnet or SSH server powered by your Python code.
The library negotiates with a Telnet client, parses commands, provides an automated
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ build-backend = "hatchling.build"

[project]
name = "telnetsrv"
version = "1.0"
version = "1.0.1"
description = "Telnet server handler library"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.10"
authors = [
{name = "Ian Epperson", email = "ian@epperson.com"},
]
Expand All @@ -34,11 +34,11 @@ Homepage = "https://github.com/ianepperson/telnetsrvlib"

[project.optional-dependencies]
green = ["gevent"]
ssh = ["paramiko"]
ssh = ["paramiko", "cryptography>=48.0.1"]
dev = [
"black>=24.0",
"black>=26.3.1",
"flake8>=7.0",
"pytest>=8.0",
"pytest>=9.0.3",
"pytest-asyncio>=0.23",
"pytest-cov>=4.0",
]
Expand All @@ -58,7 +58,7 @@ lint = "telnetsrv._lint:main"

[tool.black]
line-length = 88
target-version = ["py39", "py310", "py311", "py312"]
target-version = ["py310", "py311", "py312", "py313"]

[tool.pytest.ini_options]
testpaths = ["tests", "example-test.py"]
Expand Down
Loading
Loading