Skip to content

Commit

Permalink
Infra: Verify fsspec version compatibility (#59)
Browse files Browse the repository at this point in the history
* Infra: Verify fsspec version compatibility

* Display the final applied fsspec version
  • Loading branch information
yanghua authored Sep 7, 2024
1 parent abe0d1f commit d9d24d7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 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,10 @@ 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 }}
poetry show fsspec
- name: Prepare Env
run: |
echo "Preparing environment variables"
Expand Down

0 comments on commit d9d24d7

Please sign in to comment.