File tree Expand file tree Collapse file tree 3 files changed +37
-8
lines changed Expand file tree Collapse file tree 3 files changed +37
-8
lines changed Original file line number Diff line number Diff line change 99jobs :
1010 linux :
1111 name : ${{ matrix.PY }}-pytest
12- runs-on : ubuntu-latest
12+ runs-on : ubuntu-24.04
1313 strategy :
1414 fail-fast : false
1515 matrix :
6767
6868 lint :
6969 name : lint
70- runs-on : ubuntu-latest
70+ runs-on : ubuntu-24.04
7171 steps :
7272 - uses : actions/checkout@main
7373 - uses : actions/setup-python@main
9393#
9494 downstream :
9595 name : downstream
96- runs-on : ubuntu-latest
96+ runs-on : ubuntu-24.04
9797
9898 steps :
9999 - name : Checkout
@@ -126,11 +126,11 @@ jobs:
126126
127127 fsspec_friends :
128128 name : ${{ matrix.FRIEND }}-pytest
129- runs-on : ubuntu-latest
129+ runs-on : ubuntu-24.04
130130 strategy :
131131 fail-fast : false
132132 matrix :
133- FRIEND : [gcsfs, s3fs ]
133+ FRIEND : [s3fs, gcsfs ]
134134
135135 env :
136136 CIRUN : true
@@ -155,9 +155,11 @@ jobs:
155155 shell : bash -l {0}
156156 run : |
157157 pip install -e . --no-deps
158- pip install -e ./${{ matrix.FRIEND }} --no-deps
159158 pip list
160159
161160 - name : Test
162161 shell : bash -l {0}
163- run : pytest -v ${{ matrix.FRIEND }}
162+ run : |
163+ cd ${{ matrix.FRIEND }}
164+ pytest -v
165+ cd ..
Original file line number Diff line number Diff line change @@ -26,4 +26,6 @@ dependencies:
2626 - aiobotocore
2727 - moto
2828 - flask
29- - pyopenssl>=24.0.0
29+ - pip :
30+ - git+https://github.com/fsspec/s3fs
31+ - git+https://github.com/fsspec/gcsfs
Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ 2024.12.0
5+ ---------
6+
7+ Enhancements
8+
9+ - "exclusive" mode for writing (#1762, 1756, 174+)
10+ - "tree" text display of filesystem contents (#1750)
11+ - async wrapper for sync FSs (#1745)
12+ - new known implementation: tosfs (#1739)
13+ - consilidate block fetch requests (#1733)
14+
15+ Fixes
16+
17+ - better webHDFS proxies (#
18+ - syn FSs in referenceFS (#1755)
19+ - don't serialize file caches (#1753)
20+ - race condition in local ls() (#1744)
21+ - missing/nan references in parquet (#1738)
22+ - _un_chain kwargs (@1736)
23+ - async _cat_file in referenceFS (#1734)
24+
25+ Other
26+
27+ - fallback implementation for _fetch_range (#1732)
28+
4292024.10.0
530---------
631
You can’t perform that action at this time.
0 commit comments