Skip to content

Commit

Permalink
Remove version restriction for fsspec (#376)
Browse files Browse the repository at this point in the history
* Remove version restriction for fsspec

* update mypy to fix lint

* stop 3.7 support

* with string
  • Loading branch information
rom1504 authored Jan 6, 2024
1 parent 352ca4e commit 5dd71b9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8]
python-version: [3.8, '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ black: ## [Local development] Auto-format python code using black
build-pex:
python3 -m venv .pexing
. .pexing/bin/activate && python -m pip install -U pip && python -m pip install pex
. .pexing/bin/activate && python -m pex setuptools scipy==1.9.0 gcsfs==2022.11.0 s3fs==2022.11.0 pyspark==3.2.0 requests==2.27.1 . -o img2dataset.pex -v
. .pexing/bin/activate && python -m pex setuptools scipy==1.9.0 gcsfs s3fs pyspark==3.2.0 requests==2.27.1 . -o img2dataset.pex -v
rm -rf .pexing

test: ## [Local development] Run unit tests
Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
black==22.3.0
mypy==0.942
mypy==1.8.0
pylint==2.13.4
pytest-cov==3.0.0
pytest-xdist==2.5.0
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ exifread-nocycle>=3.0.1,<4
albumentations>=1.1.0,<2
dataclasses>=0.6,<1.0.0
wandb>=0.12.10,<0.13
fsspec==2022.11.0
fsspec

0 comments on commit 5dd71b9

Please sign in to comment.