From 7a4ce3842fe04038f2c2fc79c9235e29db5a2f88 Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Sat, 13 Jun 2026 20:27:08 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=ED=8C=8C=EC=9D=B4=EC=8D=AC=203.8=20?= =?UTF-8?q?=EC=BB=B4=ED=8C=8C=EC=9D=BC=20=ED=99=98=EA=B2=BD=20=ED=98=B8?= =?UTF-8?q?=ED=99=98=EC=9D=84=20=EC=9C=84=ED=95=9C=20setuptools<60.0=20?= =?UTF-8?q?=EB=8B=A4=EC=9A=B4=EA=B7=B8=EB=A0=88=EC=9D=B4=EB=93=9C=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index dd6d22e..f1f27b5 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -32,9 +32,10 @@ jobs: fi export PATH=$HOME/.local/bin:$PATH python3 -m pip install --upgrade pip --user --quiet - python3 -m pip install "numpy>=1.22.0,<1.24.0" --user --quiet --prefer-binary - if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt --user --quiet --prefer-binary; fi - python3 -m pip install yfinance pandas pyyaml openpyxl --user --quiet --prefer-binary + python3 -m pip install "setuptools<60.0" --user --quiet + python3 -m pip install "numpy>=1.22.0,<1.24.0" --user --quiet + if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt --user --quiet; fi + python3 -m pip install yfinance pandas pyyaml openpyxl --user --quiet echo "$HOME/.local/bin" >> $GITHUB_PATH - name: Install Node Dependencies