From d6137543dcbd1ab7c1dc0169904bd843d0ec5030 Mon Sep 17 00:00:00 2001 From: Jonathan Voss Date: Fri, 13 Jan 2023 09:02:56 -0600 Subject: [PATCH 1/3] updated author email address --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 353adcf..501edb5 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( name=PACKAGE_NAME, author="Jonathan P. Voss", - author_email="jonathan@expbits.io", + author_email="jvoss@onvox.net", python_requires="~=3.7", classifiers=[ "Environment :: Console", From 773cb3570e2a7558c65eecf36f27c26a5074fac3 Mon Sep 17 00:00:00 2001 From: Jonathan Voss Date: Fri, 13 Jan 2023 09:03:45 -0600 Subject: [PATCH 2/3] corrected routing_history example --- prsw/stat/routing_history.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/prsw/stat/routing_history.py b/prsw/stat/routing_history.py index af46c43..567a4fa 100644 --- a/prsw/stat/routing_history.py +++ b/prsw/stat/routing_history.py @@ -72,8 +72,11 @@ def __init__( at the time. (default: false) .. code-block:: python + import prsw from datetime import datetime + ripe = prsw.RIPEstat() + start = datetime.fromisoformat("2021-01-01T12:00:00.000000") end = datetime.now() @@ -81,7 +84,7 @@ def __init__( 3333, # Autonomous System Number starttime=start, # datetime endtime=end, # datetime - min_peers_seeing=20, # int + min_peers=20 # int ) """ From 131c96e5f4e6b6c2e85382ba1f96eeb3c8c3806e Mon Sep 17 00:00:00 2001 From: Jonathan Voss Date: Fri, 13 Jan 2023 09:06:09 -0600 Subject: [PATCH 3/3] version bump to 0.3.0 --- prsw/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prsw/__init__.py b/prsw/__init__.py index 62b6f69..5aba3f1 100644 --- a/prsw/__init__.py +++ b/prsw/__init__.py @@ -11,4 +11,4 @@ from .ripe_stat import RIPEstat -__version__ = "0.2.1" +__version__ = "0.3.0"