s3fs 2025.12.0__tar.gz → 2026.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. {s3fs-2025.12.0/s3fs.egg-info → s3fs-2026.1.0}/PKG-INFO +3 -3
  2. {s3fs-2025.12.0 → s3fs-2026.1.0}/docs/source/changelog.rst +5 -0
  3. s3fs-2026.1.0/requirements.txt +3 -0
  4. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/_version.py +3 -3
  5. {s3fs-2025.12.0 → s3fs-2026.1.0/s3fs.egg-info}/PKG-INFO +3 -3
  6. s3fs-2026.1.0/s3fs.egg-info/requires.txt +3 -0
  7. s3fs-2025.12.0/requirements.txt +0 -3
  8. s3fs-2025.12.0/s3fs.egg-info/requires.txt +0 -3
  9. {s3fs-2025.12.0 → s3fs-2026.1.0}/LICENSE.txt +0 -0
  10. {s3fs-2025.12.0 → s3fs-2026.1.0}/MANIFEST.in +0 -0
  11. {s3fs-2025.12.0 → s3fs-2026.1.0}/README.md +0 -0
  12. {s3fs-2025.12.0 → s3fs-2026.1.0}/docs/source/api.rst +0 -0
  13. {s3fs-2025.12.0 → s3fs-2026.1.0}/docs/source/code-of-conduct.rst +0 -0
  14. {s3fs-2025.12.0 → s3fs-2026.1.0}/docs/source/development.rst +0 -0
  15. {s3fs-2025.12.0 → s3fs-2026.1.0}/docs/source/index.rst +0 -0
  16. {s3fs-2025.12.0 → s3fs-2026.1.0}/docs/source/install.rst +0 -0
  17. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/__init__.py +0 -0
  18. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/core.py +0 -0
  19. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/errors.py +0 -0
  20. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/mapping.py +0 -0
  21. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/tests/__init__.py +0 -0
  22. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/tests/derived/__init__.py +0 -0
  23. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/tests/derived/s3fs_fixtures.py +0 -0
  24. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/tests/derived/s3fs_test.py +0 -0
  25. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/tests/test_mapping.py +0 -0
  26. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/tests/test_s3fs.py +0 -0
  27. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/tests/test_utils.py +0 -0
  28. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs/utils.py +0 -0
  29. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs.egg-info/SOURCES.txt +0 -0
  30. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs.egg-info/dependency_links.txt +0 -0
  31. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs.egg-info/not-zip-safe +0 -0
  32. {s3fs-2025.12.0 → s3fs-2026.1.0}/s3fs.egg-info/top_level.txt +0 -0
  33. {s3fs-2025.12.0 → s3fs-2026.1.0}/setup.cfg +0 -0
  34. {s3fs-2025.12.0 → s3fs-2026.1.0}/setup.py +0 -0
  35. {s3fs-2025.12.0 → s3fs-2026.1.0}/versioneer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: s3fs
3
- Version: 2025.12.0
3
+ Version: 2026.1.0
4
4
  Summary: Convenient Filesystem interface over S3
5
5
  Home-page: http://github.com/fsspec/s3fs/
6
6
  Maintainer: Martin Durant
@@ -19,8 +19,8 @@ Classifier: Programming Language :: Python :: 3.14
19
19
  Requires-Python: >= 3.10
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE.txt
22
- Requires-Dist: aiobotocore<3.0.0,>=2.5.4
23
- Requires-Dist: fsspec==2025.12.0
22
+ Requires-Dist: aiobotocore<4.0.0,>=2.5.4
23
+ Requires-Dist: fsspec==2026.1.0
24
24
  Requires-Dist: aiohttp!=4.0.0a0,!=4.0.0a1
25
25
  Dynamic: classifier
26
26
  Dynamic: description
@@ -1,6 +1,11 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 2026.1.0
5
+ --------
6
+
7
+ - allow aiobotocore 3 (#998)
8
+
4
9
  2025.12.0
5
10
  ---------
6
11
 
@@ -0,0 +1,3 @@
1
+ aiobotocore>=2.5.4,<4.0.0
2
+ fsspec==2026.1.0
3
+ aiohttp!=4.0.0a0, !=4.0.0a1
@@ -8,11 +8,11 @@ import json
8
8
 
9
9
  version_json = '''
10
10
  {
11
- "date": "2025-12-03T10:32:02-0500",
11
+ "date": "2026-01-09T10:29:07-0500",
12
12
  "dirty": false,
13
13
  "error": null,
14
- "full-revisionid": "65f394575b9667f33b59473dc28a8f1cf6708745",
15
- "version": "2025.12.0"
14
+ "full-revisionid": "a34eac971b397f0874c7843f3251ec7e54c0e810",
15
+ "version": "2026.1.0"
16
16
  }
17
17
  ''' # END VERSION_JSON
18
18
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: s3fs
3
- Version: 2025.12.0
3
+ Version: 2026.1.0
4
4
  Summary: Convenient Filesystem interface over S3
5
5
  Home-page: http://github.com/fsspec/s3fs/
6
6
  Maintainer: Martin Durant
@@ -19,8 +19,8 @@ Classifier: Programming Language :: Python :: 3.14
19
19
  Requires-Python: >= 3.10
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE.txt
22
- Requires-Dist: aiobotocore<3.0.0,>=2.5.4
23
- Requires-Dist: fsspec==2025.12.0
22
+ Requires-Dist: aiobotocore<4.0.0,>=2.5.4
23
+ Requires-Dist: fsspec==2026.1.0
24
24
  Requires-Dist: aiohttp!=4.0.0a0,!=4.0.0a1
25
25
  Dynamic: classifier
26
26
  Dynamic: description
@@ -0,0 +1,3 @@
1
+ aiobotocore<4.0.0,>=2.5.4
2
+ fsspec==2026.1.0
3
+ aiohttp!=4.0.0a0,!=4.0.0a1
@@ -1,3 +0,0 @@
1
- aiobotocore>=2.5.4,<3.0.0
2
- fsspec==2025.12.0
3
- aiohttp!=4.0.0a0, !=4.0.0a1
@@ -1,3 +0,0 @@
1
- aiobotocore<3.0.0,>=2.5.4
2
- fsspec==2025.12.0
3
- aiohttp!=4.0.0a0,!=4.0.0a1
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes