From 4151cd23451efb07f0f3163055274db38af18e9f Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Sat, 13 Jun 2026 20:33:11 +0900 Subject: [PATCH] =?UTF-8?q?Fix:=20=EB=B9=8C=EB=93=9C=20=EA=B2=A9=EB=A6=AC?= =?UTF-8?q?=EB=A1=9C=20=EC=9D=B8=ED=95=9C=20numpy=20=EC=9E=AC=EC=BB=B4?= =?UTF-8?q?=ED=8C=8C=EC=9D=BC=EC=9D=84=20=EC=9B=90=EC=B2=9C=20=EC=B0=A8?= =?UTF-8?q?=EB=8B=A8=ED=95=98=EA=B8=B0=20=EC=9C=84=ED=95=B4=20--no-build-i?= =?UTF-8?q?solation=20=EC=B6=94=EA=B0=80=20=EB=B0=8F=20SETUPTOOLS=5FUSE=5F?= =?UTF-8?q?DISTUTILS=3Dstdlib=20=EA=B5=AC=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 04deed3..1407fdc 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -24,6 +24,8 @@ jobs: git reset --hard FETCH_HEAD - name: Install Python Dependencies + env: + SETUPTOOLS_USE_DISTUTILS: stdlib run: | if ! python3 -m pip --version >/dev/null 2>&1; then curl -sS https://bootstrap.pypa.io/pip/3.8/get-pip.py -o get-pip.py @@ -33,9 +35,9 @@ jobs: export PATH=$HOME/.local/bin:$PATH python3 -m pip install --upgrade pip --user --quiet python3 -m pip install "setuptools<60.0" --user --quiet --prefer-binary - python3 -m pip install "numpy<1.21.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 "pandas<1.5.0" "yfinance<0.2.0" pyyaml openpyxl --user --quiet --prefer-binary + python3 -m pip install "numpy<1.21.0" --user --quiet --prefer-binary --no-build-isolation + if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt --user --quiet --prefer-binary --no-build-isolation; fi + python3 -m pip install "pandas<1.5.0" "yfinance<0.2.0" pyyaml openpyxl --user --quiet --prefer-binary --no-build-isolation echo "$HOME/.local/bin" >> $GITHUB_PATH - name: Install Node Dependencies