From 0695bc86114c3a875112dbed3c4d7c52be01198a Mon Sep 17 00:00:00 2001 From: Jeff Jacobson Date: Wed, 11 Oct 2017 11:49:26 -0700 Subject: [PATCH] Removed beta from version number. --- setup.py | 2 +- src/wsdot/traffic/gp/__main__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c5c9c20..c6ee21b 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name="wsdot.traffic", - version="2.0.0-beta.1", + version="2.0.0", description="Retrieves data from WSDOT Traffic API", long_description=LONG_DESC, url="https://github.com/WSDOT-GIS/wsdot-traffic-gp", diff --git a/src/wsdot/traffic/gp/__main__.py b/src/wsdot/traffic/gp/__main__.py index 8591ae2..230e6df 100644 --- a/src/wsdot/traffic/gp/__main__.py +++ b/src/wsdot/traffic/gp/__main__.py @@ -38,7 +38,7 @@ def main(): parser.add_argument("--code", "-c", type=str, required=api_code is None, default=api_code, help=p_help) - parser.add_argument("--schema-only", action="store_true") + parser.add_argument("--schema-only", action="store_true", help="Using this flag will generate the tables but skips the data download and population steps.") parser.add_argument("--log-level", choices=( "CRITICAL", "ERROR",