From 2dcf0e7b7833aa639357678e6e0bcc31b19bf9a6 Mon Sep 17 00:00:00 2001 From: Babak Farrokhi Date: Sun, 30 Apr 2017 21:12:08 +0430 Subject: [PATCH] Fix setuptools --- dnseval.py | 2 +- dnsping.py | 2 +- dnstraceroute.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dnseval.py b/dnseval.py index c721e61..892a036 100755 --- a/dnseval.py +++ b/dnseval.py @@ -40,7 +40,7 @@ import dns.resolver __author__ = 'Babak Farrokhi (babak@farrokhi.net)' __license__ = 'BSD' -__version__ = "1.6.1" +__version__ = "1.6.2" __progname__ = os.path.basename(sys.argv[0]) shutdown = False diff --git a/dnsping.py b/dnsping.py index 2ed1791..6d075a7 100755 --- a/dnsping.py +++ b/dnsping.py @@ -40,7 +40,7 @@ import dns.resolver __author__ = 'Babak Farrokhi (babak@farrokhi.net)' __license__ = 'BSD' -__version__ = "1.6.1" +__version__ = "1.6.2" __progname__ = os.path.basename(sys.argv[0]) shutdown = False diff --git a/dnstraceroute.py b/dnstraceroute.py index f88ce0b..4c66301 100755 --- a/dnstraceroute.py +++ b/dnstraceroute.py @@ -43,7 +43,7 @@ from cymruwhois import cymruwhois __author__ = 'Babak Farrokhi (babak@farrokhi.net)' __license__ = 'BSD' -__version__ = "1.6.1" +__version__ = "1.6.2" _ttl = None quiet = False diff --git a/setup.py b/setup.py index 48f7684..9eb423a 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="dnsdiag", - version="1.6.1", + version="1.6.2", packages=find_packages(), scripts=["dnseval.py", "dnsping.py", "dnstraceroute.py"], install_requires=['dnspython>=1.15.0'],