Skip to content

Commit

Permalink
Infra: Verify fsspec version compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
yanghua committed Sep 6, 2024
1 parent abe0d1f commit 3b279ab
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
fsspec-version: ["2023.5.0", "2024.9.0"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -19,7 +20,9 @@ jobs:
set -x
python -m pip install --upgrade pip
pip install --user poetry
make install
poetry lock
poetry install --with dev
poetry add fsspec==${{ matrix.fsspec-version }}
- name: Prepare Env
run: |
echo "Preparing environment variables"
Expand Down

0 comments on commit 3b279ab

Please sign in to comment.