Skip to content

Commit b559fe5

Browse files
committed
Bump python to 3.10+
1 parent 191f4c1 commit b559fe5

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ authors = [
1212
]
1313
description = "2ping a bi-directional ping utility"
1414
readme = "README.md"
15-
requires-python = ">=3.6"
15+
requires-python = ">=3.10"
1616
license = "MPL-2.0"
1717
classifiers = [
1818
"Development Status :: 5 - Production/Stable",
@@ -57,3 +57,7 @@ include = [
5757

5858
[tool.black]
5959
line-length = 132
60+
61+
[build-system]
62+
requires = ["setuptools>=77.0.3"]
63+
build-backend = "setuptools.build_meta"

twoping/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
import sys
88

99
__version__ = "4.6.1"
10-
assert sys.version_info > (3, 6)
10+
assert sys.version_info > (3, 10)

0 commit comments

Comments
 (0)