update github workflow

This commit is contained in:
Yonokid
2025-05-17 00:32:03 -04:00
parent 316b878516
commit 2a6278943b
2 changed files with 4 additions and 22 deletions

View File

@@ -43,7 +43,8 @@ jobs:
output-dir: . output-dir: .
include-module: raylib,moviepy,numpy,sounddevice include-module: raylib,moviepy,numpy,sounddevice
include-package: imageio_ffmpeg include-package: imageio_ffmpeg
enable-plugins: numpy noinclude-setuptools-mode: nofollow
noinclude-IPython-mode: nofollow
- name: Upload Artifacts - name: Upload Artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
@@ -57,18 +58,3 @@ jobs:
*.exe *.exe
*.bin *.bin
*.app/**/* *.app/**/*
# - name: Release
# uses: softprops/action-gh-release@v2
# with:
# repository: yonokid/PyTaiko
# files: |
# Graphics/*
# Sounds/*
# Videos/*
# config.toml
# *.exe
# *.bin
# *.app/**/*
# tag_name: 0.0.3
# make_latest: true

View File

@@ -5,9 +5,7 @@ import time
import wave import wave
from threading import Lock, Thread from threading import Lock, Thread
from numpy import ( from numpy import abs as np_abs
abs as np_abs,
)
from numpy import ( from numpy import (
arange, arange,
column_stack, column_stack,
@@ -20,9 +18,7 @@ from numpy import (
uint8, uint8,
zeros, zeros,
) )
from numpy import ( from numpy import max as np_max
max as np_max,
)
os.environ["SD_ENABLE_ASIO"] = "1" os.environ["SD_ENABLE_ASIO"] = "1"
import sounddevice as sd import sounddevice as sd