Skip to content

Commit

Permalink
Update version to 0.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma67 committed May 23, 2021
1 parent f8e9d17 commit 474be51
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_search(self):
self.assertGreater(len(results), 10)
results = self.yt_auth.search(query, 'albums', limit=40)
self.assertGreater(len(results), 20)
results = self.yt_auth.search('oasos', 'artists', ignore_spelling=True)
results = self.yt_auth.search('calvin haris', 'artists', ignore_spelling=True)
self.assertGreater(len(results), 0)
results = self.yt_auth.search("classical music", 'playlists')
self.assertGreater(len(results), 5)
Expand Down Expand Up @@ -77,9 +77,6 @@ def test_get_artist(self):

results = self.yt.get_artist("UCLZ7tlKC06ResyDmEStSrOw") # no album year
self.assertGreaterEqual(len(results), 11)
results = self.yt.get_artist(
"UCDAPd3S5CBIEKXn-tvy57Lg") # no thumbnail, albums, subscribe count
self.assertGreaterEqual(len(results), 11)

def test_get_artist_for_non_youtube_music_channel(self):
# all YouTube channel IDs can be looked up in YouTube Music, but the page they return will not necessarily return any music content
Expand Down
2 changes: 1 addition & 1 deletion ytmusicapi/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.17.2"
__version__ = "0.17.3"

0 comments on commit 474be51

Please sign in to comment.