From 7f55559eb9f6b172d6781ed6548905e2bb3c4d15 Mon Sep 17 00:00:00 2001 From: Shail Shouryya Date: Sun, 24 Nov 2019 16:59:00 -0800 Subject: [PATCH] 0.2.10 - adds output of Selenium exception to terminal message - adds terminal copy-paste directions - adds sources for driver GitHub pages - adds download directions for each driver to help user decide which driver version to download - changes check for file existence from a method call to a boolean check based on a ternary statement - adds encouraging statement for user to fix broken dependency --- setup.py | 2 +- yt_videos_list/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index dd34ce91..8aa4b79f 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='yt_videos_list', - version='0.2.9', + version='0.2.10', description='Python package to extract YouTube video titles and corresponding URLs for a specific channel', long_description=long_description, long_description_content_type='text/markdown', diff --git a/yt_videos_list/__init__.py b/yt_videos_list/__init__.py index dc2fd2b1..639e4e17 100644 --- a/yt_videos_list/__init__.py +++ b/yt_videos_list/__init__.py @@ -1,6 +1,6 @@ from yt_videos_list.__main__ import ListGenerator ''' -version: 0.2.9 +version: 0.2.10 author: Shail-Shouryya development_status: 4 - Beta intended_audience: Developers, Hobbyists @@ -8,7 +8,7 @@ ideal_python_version: Python 3.7 source: https://github.com/Shail-Shouryya/yt_videos_list ''' -__version__ = "0.2.9" +__version__ = "0.2.10" __author__ = 'Shail-Shouryya' __development_status__ = '4 - Beta' __intended_audience__ = 'Developers, Hobbyists'