Skip to content
Open
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ It uses 3-way pings (akin to TCP SYN, SYN/ACK, ACK) and after-the-fact state com

## Installation

2ping requires Python 3 version 3.6 or higher.
2ping requires Python 3 version 3.10 or higher.

To install 2ping with all optional dependencies as a pipx package:

Expand Down
12 changes: 9 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ authors = [
]
description = "2ping a bi-directional ping utility"
readme = "README.md"
requires-python = ">=3.6"
license = {text = "MPL-2.0"}
requires-python = ">=3.10"
license = "MPL-2.0"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
Expand All @@ -41,6 +40,9 @@ full = [
"pycryptodomex",
]

[tool.setuptools.data-files]
"share/man/man1" = ["doc/*.1"]

[tool.setuptools.packages.find]
include = [
"twoping",
Expand All @@ -58,3 +60,7 @@ line-length = 132
[tool.flake8]
max-line-length = 132
ignore = ["E203", "W503"]

[build-system]
requires = ["setuptools>=77.0.3"]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion twoping/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@


__version__ = "4.5.1"
assert sys.version_info > (3, 6)
assert sys.version_info > (3, 10)