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.
- {s3fs-2025.7.0/s3fs.egg-info → s3fs-2025.9.0}/PKG-INFO +2 -2
- {s3fs-2025.7.0 → s3fs-2025.9.0}/docs/source/changelog.rst +5 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/requirements.txt +1 -1
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/_version.py +3 -3
- {s3fs-2025.7.0 → s3fs-2025.9.0/s3fs.egg-info}/PKG-INFO +2 -2
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs.egg-info/requires.txt +1 -1
- {s3fs-2025.7.0 → s3fs-2025.9.0}/LICENSE.txt +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/MANIFEST.in +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/README.md +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/docs/source/api.rst +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/docs/source/development.rst +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/docs/source/index.rst +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/docs/source/install.rst +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/__init__.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/core.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/errors.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/mapping.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/__init__.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/derived/__init__.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/derived/s3fs_fixtures.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/derived/s3fs_test.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/test_mapping.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/test_s3fs.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/tests/test_utils.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs/utils.py +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs.egg-info/SOURCES.txt +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs.egg-info/dependency_links.txt +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs.egg-info/not-zip-safe +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/s3fs.egg-info/top_level.txt +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/setup.cfg +0 -0
- {s3fs-2025.7.0 → s3fs-2025.9.0}/setup.py +0 -0
- {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.
|
|
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.
|
|
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"
|
|
@@ -8,11 +8,11 @@ import json
|
|
|
8
8
|
|
|
9
9
|
version_json = '''
|
|
10
10
|
{
|
|
11
|
-
"date": "2025-
|
|
11
|
+
"date": "2025-09-02T15:17:31-0400",
|
|
12
12
|
"dirty": false,
|
|
13
13
|
"error": null,
|
|
14
|
-
"full-revisionid": "
|
|
15
|
-
"version": "2025.
|
|
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.
|
|
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.
|
|
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"
|
|
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
|
|
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
|