Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
7x11x13 committed Mar 19, 2024
1 parent 57d1c83 commit 0139b74
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
test:
environment: test
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: ${{ !startsWith(github.ref, 'refs/tags/v') }}
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def readme():

setup(
name="soundcloud-v2",
version="1.3.2",
version="1.3.3",
description="Python wrapper for the v2 SoundCloud API",
long_description=readme(),
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion soundcloud/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
from soundcloud.resource.web_profile import WebProfile
from soundcloud.soundcloud import SoundCloud

__version__ = "1.3.2"
__version__ = "1.3.3"
2 changes: 1 addition & 1 deletion soundcloud/soundcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def search_users(self, query: str, **kwargs) -> Generator[User, None, None]:

def get_tag_tracks_recent(self, tag: str, **kwargs) -> Generator[Track, None, None]:
"""
Get most recent tracks for this tag
Get most recent tracks for this tag. Might be obsolete?
"""
return self.requests["tag_recent_tracks"](tag=tag, **kwargs)

Expand Down

0 comments on commit 0139b74

Please sign in to comment.