Skip to content

Commit

Permalink
0.2.10
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
shailshouryya committed Nov 25, 2019
1 parent 3f742f0 commit 7f55559
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions yt_videos_list/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
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
license: OSI Approved :: Apache License 2.0
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'
Expand Down

0 comments on commit 7f55559

Please sign in to comment.