Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadowghost committed Jan 3, 2025
1 parent 985f556 commit c8d4437
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ jobs:
build-win64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.13
- uses: git-for-windows/setup-git-for-windows-sdk@v1
- name: Setup git SDK
uses: git-for-windows/setup-git-for-windows-sdk@v1
with:
flavor: minimal
- name: Download mpv
Expand Down Expand Up @@ -52,12 +54,14 @@ jobs:
build-win32:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python 3.9
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.9
- uses: git-for-windows/setup-git-for-windows-sdk@v1
python-version: 3.13
- name: Setup git SDK
uses: git-for-windows/setup-git-for-windows-sdk@v1
with:
flavor: minimal
- name: Download mpv
Expand Down
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

# Newer revisions of python-mpv require mpv-1.dll in the PATH.
# Newer revisions of python-mpv require mpv-2.dll in the PATH.
import os
import sys
import multiprocessing
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
"Operating System :: OS Independent",
],
extras_require=extras,
python_requires=">=3.9",
python_requires=">=3.7",
install_requires=[
"python-mpv @ git+https://github.com/jaseg/python-mpv.git@main",
"mpv @ git+https://github.com/jaseg/python-mpv.git@main",
"jellyfin-apiclient-python>=1.9.2",
"python-mpv-jsonipc>=1.2.0",
"requests",
Expand Down

0 comments on commit c8d4437

Please sign in to comment.