s3fs 2025.7.0__tar.gz → 2025.9.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 (32) hide show
  1. {s3fs-2025.7.0/s3fs.egg-info → s3fs-2025.9.0}/PKG-INFO +2 -2
  2. {s3fs-2025.7.0 → s3fs-2025.9.0}/docs/source/changelog.rst +5 -0
  3. {s3fs-2025.7.0 → s3fs-2025.9.0}/requirements.txt +1 -1
  4. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/_version.py +3 -3
  5. {s3fs-2025.7.0 → s3fs-2025.9.0/s3fs.egg-info}/PKG-INFO +2 -2
  6. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs.egg-info/requires.txt +1 -1
  7. {s3fs-2025.7.0 → s3fs-2025.9.0}/LICENSE.txt +0 -0
  8. {s3fs-2025.7.0 → s3fs-2025.9.0}/MANIFEST.in +0 -0
  9. {s3fs-2025.7.0 → s3fs-2025.9.0}/README.md +0 -0
  10. {s3fs-2025.7.0 → s3fs-2025.9.0}/docs/source/api.rst +0 -0
  11. {s3fs-2025.7.0 → s3fs-2025.9.0}/docs/source/development.rst +0 -0
  12. {s3fs-2025.7.0 → s3fs-2025.9.0}/docs/source/index.rst +0 -0
  13. {s3fs-2025.7.0 → s3fs-2025.9.0}/docs/source/install.rst +0 -0
  14. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/__init__.py +0 -0
  15. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/core.py +0 -0
  16. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/errors.py +0 -0
  17. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/mapping.py +0 -0
  18. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/__init__.py +0 -0
  19. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/derived/__init__.py +0 -0
  20. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/derived/s3fs_fixtures.py +0 -0
  21. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/derived/s3fs_test.py +0 -0
  22. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/test_mapping.py +0 -0
  23. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/test_s3fs.py +0 -0
  24. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/test_utils.py +0 -0
  25. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/utils.py +0 -0
  26. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs.egg-info/SOURCES.txt +0 -0
  27. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs.egg-info/dependency_links.txt +0 -0
  28. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs.egg-info/not-zip-safe +0 -0
  29. {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs.egg-info/top_level.txt +0 -0
  30. {s3fs-2025.7.0 → s3fs-2025.9.0}/setup.cfg +0 -0
  31. {s3fs-2025.7.0 → s3fs-2025.9.0}/setup.py +0 -0
  32. {s3fs-2025.7.0 → s3fs-2025.9.0}/versioneer.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: s3fs
3
- Version: 2025.7.0
3
+ Version: 2025.9.0
4
4
  Summary: Convenient Filesystem interface over S3
5
5
  Home-page: http://github.com/fsspec/s3fs/
6
6
  Maintainer: Martin Durant
@@ -20,7 +20,7 @@ Requires-Python: >= 3.9
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE.txt
22
22
  Requires-Dist: aiobotocore<3.0.0,>=2.5.4
23
- Requires-Dist: fsspec==2025.7.0
23
+ Requires-Dist: fsspec==2025.9.0
24
24
  Requires-Dist: aiohttp!=4.0.0a0,!=4.0.0a1
25
25
  Provides-Extra: awscli
26
26
  Requires-Dist: aiobotocore[awscli]<3.0.0,>=2.5.4; extra == "awscli"
@@ -1,6 +1,11 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ 2025.9.0
5
+ --------
6
+
7
+ - update README for distribution compliance
8
+
4
9
  2025.7.0
5
10
  --------
6
11
 
@@ -1,3 +1,3 @@
1
1
  aiobotocore>=2.5.4,<3.0.0
2
- fsspec==2025.7.0
2
+ fsspec==2025.9.0
3
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-07-15T12:34:34-0400",
11
+ "date": "2025-09-02T15:17:31-0400",
12
12
  "dirty": false,
13
13
  "error": null,
14
- "full-revisionid": "d46c149d89590b4b9109213f9f92cea01504eb0b",
15
- "version": "2025.7.0"
14
+ "full-revisionid": "380b2c6ad868dd90cf8967c862bac1b3154b357b",
15
+ "version": "2025.9.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.7.0
3
+ Version: 2025.9.0
4
4
  Summary: Convenient Filesystem interface over S3
5
5
  Home-page: http://github.com/fsspec/s3fs/
6
6
  Maintainer: Martin Durant
@@ -20,7 +20,7 @@ Requires-Python: >= 3.9
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE.txt
22
22
  Requires-Dist: aiobotocore<3.0.0,>=2.5.4
23
- Requires-Dist: fsspec==2025.7.0
23
+ Requires-Dist: fsspec==2025.9.0
24
24
  Requires-Dist: aiohttp!=4.0.0a0,!=4.0.0a1
25
25
  Provides-Extra: awscli
26
26
  Requires-Dist: aiobotocore[awscli]<3.0.0,>=2.5.4; extra == "awscli"
@@ -1,5 +1,5 @@
1
1
  aiobotocore<3.0.0,>=2.5.4
2
- fsspec==2025.7.0
2
+ fsspec==2025.9.0
3
3
  aiohttp!=4.0.0a0,!=4.0.0a1
4
4
 
5
5
  [awscli]
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
File without changes
File without changes