Skip to content

Commit

Permalink
Try to install dependencies and s3fs at the same time
Browse files Browse the repository at this point in the history
s3fs depends on botocore but not boto3. Installing boto3 first
leads to incompatibilities when s3fs can lower the botocore
version.
  • Loading branch information
timj committed Jan 16, 2025
1 parent cea768e commit 93d2ff3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ jobs:
- name: Install dependencies
shell: bash -l {0}
# Install s3fs with requirements.txt to allow self-consistent install.
run: |
pip install uv
uv pip install -r requirements.txt
uv pip install fsspec s3fs
uv pip install -r requirements.txt fsspec s3fs
# We have two cores so we can speed up the testing with xdist
- name: Install pytest packages
Expand Down

0 comments on commit 93d2ff3

Please sign in to comment.