-
Notifications
You must be signed in to change notification settings - Fork 641
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 2.10.3 Automatically generated by python-semantic-release * chore: use pipenv * fix: #806 - pressing q doesn't stops playback when in repeat mode * 2.10.4 Automatically generated by python-semantic-release * fix: #1243 bumped yt-dlp version Thanks to @galgot * 2.10.5 Automatically generated by python-semantic-release * docs: extend upgrade instructions (#1249) This adds the pip / pipx commands to upgrade all the dependencies. This makes directed actions like #1225 (comment) unnecessary. * added a notice * fix syntax warnings on 3.12 (#1263) * Update project URL and version maintenance (#1262) * Update project URL * Update __version__ in setup.py This suppresses the update notifications * help new: more accurate helptext `help new` doesn't actually check whether there's a new version, it shows the changelog for the latest release no matter what. Update helptext to reflect this. * Update COLLABORATORS.md * Fix Issue #1064 and #1283: User and Channel searches to return all videos including optional filtering of search terms (#1282) (#1288) * Updated the all_videos_from_channel function to return all videos from a channel, not just the first page of playlist results (previous method only returned up to 100 videos max). * Updated the usersearch_id function to filter the returned videos by search term in the title or description. This restores the ability to search a user's videos. Co-authored-by: Robert Hill <[email protected]> * 2.11.0 Automatically generated by python-semantic-release * 2.11.1 Automatically generated by python-semantic-release * 2.11.2 Automatically generated by python-semantic-release * 2.11.3 Automatically generated by python-semantic-release * 2.11.4 Automatically generated by python-semantic-release * 2.11.5 Automatically generated by python-semantic-release * chore: update author email * fix: wheel_recipe.sh * 2.11.6 Automatically generated by python-semantic-release * fix: semantic_release version for pypi setup.py was stuck * 2.11.7 Automatically generated by python-semantic-release * chore: clean up setup.cfg * 2.12.0 Automatically generated by python-semantic-release --------- Co-authored-by: github-actions <[email protected]> Co-authored-by: fslori <[email protected]> Co-authored-by: Branch Vincent <[email protected]> Co-authored-by: lawrence <[email protected]> Co-authored-by: Robert Hill <[email protected]> Co-authored-by: semantic-release <semantic-release>
- Loading branch information
1 parent
fe8165c
commit 9f81417
Showing
15 changed files
with
5,479 additions
and
438 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[packages] | ||
requests = "*" | ||
pyreadline3 = "*" | ||
pyperclip = "*" | ||
youtube-search-python = ">=1.6.5" | ||
yt-dlp = "*" | ||
colorama = "*" | ||
pylast = "*" | ||
|
||
[dev-packages] | ||
|
||
[requires] | ||
python_version = "3.11" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[tool.semantic_release] | ||
version_variables = ["setup.py:__version__"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
""" setup.py for yewtube. | ||
https://github.com/iamtalhaasghar/yewtube | ||
https://github.com/mps-youtube/yewtube | ||
python setup.py sdist bdist_wheel | ||
""" | ||
|
@@ -21,17 +21,17 @@ | |
with open('requirements.txt', 'r') as fh: | ||
requirements = fh.readlines() | ||
|
||
__version__ = "2.10.2" | ||
__version__ = "2.12.0" | ||
|
||
options = dict( | ||
name="yewtube", | ||
version=__version__, | ||
description="A Terminal based YouTube player and downloader. No Youtube API key required. Forked from mps-youtube", | ||
keywords=["video", "music", "audio", "youtube", "stream", "download"], | ||
author="talha_programmer", | ||
author_email="[email protected]", | ||
url="https://github.com/iamtalhaasghar/yewtube", | ||
download_url="https://github.com/iamtalhaasghar/yewtube/releases", | ||
author_email="[email protected]", | ||
url="https://github.com/mps-youtube/yewtube", | ||
download_url="https://github.com/mps-youtube/yewtube/releases", | ||
packages=['mps_youtube', 'mps_youtube.commands', 'mps_youtube.listview', 'mps_youtube.players'], | ||
entry_points={'console_scripts': ['yt = mps_youtube:main.main']}, | ||
python_requires='>=3.6', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# a script to build and upload wheel files on pypi.org | ||
rm -rf dist/ | ||
semantic-release version | ||
python -m build --sdist | ||
python -m build --wheel | ||
twine upload --verbose dist/* | ||
twine upload --verbose dist/* | ||
semantic-release publish |