Skip to content

Commit

Permalink
deps: update python
Browse files Browse the repository at this point in the history
  • Loading branch information
itsHenry35 committed Feb 7, 2024
1 parent c9b21ca commit b2292aa
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10.6
python-version: 3.10.11

- name: Install Dependencies
run: |
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10.6
python-version: 3.10.11

- name: Install Dependencies
run: |
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10.6
python-version: 3.10.11

- name: Install Dependencies
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10.6
python-version: 3.10.11

- name: Install Dependencies
run: |
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10.6
python-version: 3.10.11

- name: Install Dependencies
run: |
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10.6
python-version: 3.10.11

- name: Install Dependencies
run: |
Expand Down
22 changes: 11 additions & 11 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,14 @@ def get_aria2c_path_conf():
return os.path.join(bundle_dir, "bin", f"aria2c_{platform_string}_{arch}" + (".exe" if platform_string == "win32" else "")), os.path.join(bundle_dir, "bin", f"aria2_{platform_string}.conf")


# try:
login()
download()
# except Exception as e:
# sentry_sdk.capture_exception(e)
# mb.showerror('错误', '错误:' + str(e))
# alertdialog = mb.askyesno('错误反馈', '是否打开错误反馈页面?')
# if alertdialog:
# mb.showinfo('错误反馈', '请在弹出的网页底部评论区中或在GitHub上将错误反馈给开发者!')
# webbrowser.open("https://blog.itshenryz.com/2022/06/01/ledu-playback-download/")
# sys.exit()
try:
login()
download()
except Exception as e:
sentry_sdk.capture_exception(e)
mb.showerror('错误', '错误:' + str(e))
alertdialog = mb.askyesno('错误反馈', '是否打开错误反馈页面?')
if alertdialog:
mb.showinfo('错误反馈', '请在弹出的网页底部评论区中或在GitHub上将错误反馈给开发者!')
webbrowser.open("https://blog.itshenryz.com/2022/06/01/ledu-playback-download/")
sys.exit()

0 comments on commit b2292aa

Please sign in to comment.