Skip to content

Commit 6fe8d21

Browse files
committed
Bump python to 3.10+
1 parent d7f5eac commit 6fe8d21

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It uses 3-way pings (akin to TCP SYN, SYN/ACK, ACK) and after-the-fact state com
1111

1212
## Installation
1313

14-
2ping requires Python 3 version 3.6 or higher.
14+
2ping requires Python 3 version 3.10 or higher.
1515

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

pyproject.toml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ authors = [
1010
]
1111
description = "2ping a bi-directional ping utility"
1212
readme = "README.md"
13-
requires-python = ">=3.6"
14-
license = {text = "MPL-2.0"}
13+
requires-python = ">=3.10"
14+
license = "MPL-2.0"
1515
classifiers = [
1616
"Development Status :: 5 - Production/Stable",
1717
"Environment :: Console",
1818
"Intended Audience :: System Administrators",
19-
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
2019
"Natural Language :: English",
2120
"Operating System :: MacOS :: MacOS X",
2221
"Operating System :: Microsoft :: Windows",
@@ -61,3 +60,7 @@ line-length = 132
6160
[tool.flake8]
6261
max-line-length = 132
6362
ignore = ["E203", "W503"]
63+
64+
[build-system]
65+
requires = ["setuptools>=77.0.3"]
66+
build-backend = "setuptools.build_meta"

twoping/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77

88
__version__ = "4.5.1"
9-
assert sys.version_info > (3, 6)
9+
assert sys.version_info > (3, 10)

0 commit comments

Comments
 (0)