Skip to content

Commit 1ac4a8c

Browse files
committed
Fix dnspython dependency for Python 3.8 compatibility
1 parent b24e71a commit 1ac4a8c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "dns-benchmark-tool"
7-
version = "0.1.3"
7+
version = "0.1.4"
88
description = "Benchmark DNS resolvers across domains and record types with analytics and reports (CSV, Excel, PDF, JSON)."
99
readme = "README-pypi.md"
1010
authors = [
1111
{ name = "Joseph Oseh Frank", email = "frank@osehfrank.com" }
1212
]
1313
license = { text = "MIT" }
14-
requires-python = ">=3.8"
14+
requires-python = ">=3.9"
1515

1616
dependencies = [
1717
"dnspython>=2.7,<3.0",

src/dns_benchmark/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.3"
1+
__version__ = "0.1.4"

0 commit comments

Comments
 (0)