Skip to content

Commit

Permalink
Fix Pip check fails with pip==24.2 on minimum tests
Browse files Browse the repository at this point in the history
  • Loading branch information
amontanez24 committed Oct 21, 2024
1 parent 1baf785 commit 88e6f6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/minimum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,8 @@ jobs:
python-version: '3.12'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} for arm64
if: ${{ matrix.os == 'macos-latest' && matrix.python-version == '3.8' }}
uses: "gabrielfalcao/pyenv-action@v17"
with:
default: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
if: ${{ matrix.os != 'macos-latest' || matrix.python-version != '3.8' }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies = [
"pandas>=1.4.0;python_version<'3.11'",
"pandas>=1.5.0;python_version>='3.11' and python_version<'3.12'",
"pandas>=2.1.1;python_version>='3.12'",
"torch>=1.9.0;python_version<'3.10'",
"torch>=1.10.0;python_version<'3.10'",
"torch>=1.11.0;python_version>='3.10' and python_version<'3.11'",
"torch>=2.0.0;python_version>='3.11' and python_version<'3.12'",
"torch>=2.2.0;python_version>='3.12'",
Expand Down

0 comments on commit 88e6f6e

Please sign in to comment.