Skip to content

Commit 88e6f6e

Browse files
committed
Fix Pip check fails with pip==24.2 on minimum tests
1 parent 1baf785 commit 88e6f6e

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

Diff for: .github/workflows/minimum.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,8 @@ jobs:
2020
python-version: '3.12'
2121
steps:
2222
- uses: actions/checkout@v4
23-
- name: Set up Python ${{ matrix.python-version }} for arm64
24-
if: ${{ matrix.os == 'macos-latest' && matrix.python-version == '3.8' }}
25-
uses: "gabrielfalcao/pyenv-action@v17"
26-
with:
27-
default: ${{ matrix.python-version }}
2823
- name: Set up Python ${{ matrix.python-version }}
29-
if: ${{ matrix.os != 'macos-latest' || matrix.python-version != '3.8' }}
30-
uses: actions/setup-python@v2
24+
uses: actions/setup-python@v5
3125
with:
3226
python-version: ${{ matrix.python-version }}
3327
- name: Install dependencies

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies = [
2727
"pandas>=1.4.0;python_version<'3.11'",
2828
"pandas>=1.5.0;python_version>='3.11' and python_version<'3.12'",
2929
"pandas>=2.1.1;python_version>='3.12'",
30-
"torch>=1.9.0;python_version<'3.10'",
30+
"torch>=1.10.0;python_version<'3.10'",
3131
"torch>=1.11.0;python_version>='3.10' and python_version<'3.11'",
3232
"torch>=2.0.0;python_version>='3.11' and python_version<'3.12'",
3333
"torch>=2.2.0;python_version>='3.12'",

0 commit comments

Comments
 (0)