From 8b8c42b651cc00ddf5b058f93374daeba3bf4444 Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Sat, 12 Oct 2019 17:13:12 -0500 Subject: [PATCH] Bumped version number --- ctabus/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ctabus/__init__.py b/ctabus/__init__.py index 4fecfd6..7a20d4d 100644 --- a/ctabus/__init__.py +++ b/ctabus/__init__.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -__version__ = "2.4" +__version__ = "2.4.1" from dateutil import tz from dateutil.parser import parse as date_parse from threading import Event diff --git a/setup.py b/setup.py index b8bcc4d..266aebb 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("requirements.txt") as file: setup( name="ctabus", - version="2.4", + version="2.4.1", description="Python package for tracking cta bus times", install_requires=INSTALL_REQUIRES, author="rlbr",