Skip to content

Commit bef64d6

Browse files
authored
changelog (#1966)
1 parent 2951d1f commit bef64d6

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

ci/environment-friends.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ dependencies:
1818
- google-auth-oauthlib
1919
- flake8
2020
- black
21+
- psutil
2122
- google-cloud-core
2223
- google-cloud-storage
2324
- google-api-core

docs/source/changelog.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
11
Changelog
22
=========
33

4+
2026.1.0
5+
--------
6+
7+
Put limits on install extras for s3fs/gcsfs to prevent installing
8+
ancient versions via pip.
9+
10+
Enhancements
11+
12+
- configure TLS protocol version for FTP (#1958)
13+
14+
Fixes
15+
16+
- Respect auto_mkdir in mv for local (#1957)
17+
18+
Other
19+
20+
- link to pydantic, code and union implementations ($1956)
21+
- use backport.zstd or builtin (#1962)
22+
- docs typo (#1963)
23+
424
2025.12.0
525
---------
626

fsspec/registry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def register_implementation(name, cls, clobber=False, errtxt=None):
189189
},
190190
"pyscript": {
191191
"class": "pyscript_fsspec_client.client.PyscriptFileSystem",
192-
"err": "Install requests (cpython) or run in pyscript",
192+
"err": "This only runs in a pyscript context",
193193
},
194194
"reference": {"class": "fsspec.implementations.reference.ReferenceFileSystem"},
195195
"root": {

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ full = [
4040
'dropbox',
4141
'dropboxdrivefs',
4242
'fusepy',
43-
'gcsfs',
43+
'gcsfs >2024.2.0',
4444
'libarchive-c',
4545
'ocifs',
4646
'panel',
4747
'paramiko',
4848
'pyarrow >= 1',
4949
'pygit2',
5050
'requests',
51-
's3fs',
51+
's3fs >2024.2.0',
5252
'smbprotocol',
5353
'tqdm',
5454
]

0 commit comments

Comments
 (0)