-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): upgrade PyInstaller and Poetry
- Loading branch information
1 parent
ef0e6bd
commit 8102c0b
Showing
7 changed files
with
55 additions
and
46 deletions.
There are no files selected for viewing
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
Submodule you-get
updated
17 files
+2 −3 | .github/workflows/python-package.yml | |
+1 −1 | LICENSE.txt | |
+75 −79 | README.md | |
+5 −0 | SECURITY.md | |
+15 −2 | setup.py | |
+20 −7 | src/you_get/common.py | |
+0 −1 | src/you_get/extractors/__init__.py | |
+42 −22 | src/you_get/extractors/bilibili.py | |
+6 −4 | src/you_get/extractors/imgur.py | |
+5 −5 | src/you_get/extractors/tiktok.py | |
+10 −14 | src/you_get/extractors/tumblr.py | |
+31 −85 | src/you_get/extractors/twitter.py | |
+0 −36 | src/you_get/extractors/vine.py | |
+3 −3 | src/you_get/processor/ffmpeg.py | |
+1 −1 | src/you_get/version.py | |
+4 −3 | tests/test.py | |
+2 −0 | you-get.json |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,10 @@ name = "you-get.exe" | |
version = "0.1.0" | ||
description = "You-Get unofficial build executable for Windows" | ||
authors = ["Lussac Zheng <[email protected]>"] | ||
package-mode = false | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<3.13" | ||
python = ">=3.8, <3.13, !=3.10.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pyinstaller = ">4.0, !=5.0" | ||
|
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