Skip to content

Commit 54e8faa

Browse files
authored
changelog (fsspec#693)
+ rst->md for readme
1 parent 40882ce commit 54e8faa

File tree

5 files changed

+26
-35
lines changed

5 files changed

+26
-35
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
gcsfs
2+
=====
3+
4+
[|Build Status|](https://github.com/fsspec/gcsfs/actions)
5+
[|Docs|](https://gcsfs.readthedocs.io/en/latest/?badge=latest)
6+
7+
Pythonic file-system for Google Cloud Storage for fsspec.
8+
9+
10+
Support
11+
-------
12+
13+
Work on this repository is supported in part by:
14+
15+
"Anaconda, Inc. - Advancing AI through open source."
16+
17+
<a href="https://anaconda.com/"><img src="https://camo.githubusercontent.com/b8555ef2222598ed37ce38ac86955febbd25de7619931bb7dd3c58432181d3b6/68747470733a2f2f626565776172652e6f72672f636f6d6d756e6974792f6d656d626572732f616e61636f6e64612f616e61636f6e64612d6c617267652e706e67" alt="anaconda logo" width="40%"/></a>

README.rst

Lines changed: 0 additions & 29 deletions
This file was deleted.

docs/source/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ Changelog
44
Note: in some releases, there are no changes, because we always guarantee
55
releasing in step with fsspec.
66

7+
2025.7.0
8+
--------
9+
10+
* acknowledge Anaconda support (#691)
11+
* less refreshing for CI (#690)
12+
713
2025.5.1
814
--------
915

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
aiohttp!=4.0.0a0, !=4.0.0a1
22
decorator>4.1.2
3-
fsspec==2025.5.1
3+
fsspec==2025.7.0
44
google-auth>=1.2
55
google-auth-oauthlib
66
google-cloud-storage

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env python
22

3-
import os
4-
53
from setuptools import setup
64

75
import versioneer
@@ -29,10 +27,9 @@
2927
keywords=["google-cloud-storage", "gcloud", "file-system"],
3028
packages=["gcsfs", "gcsfs.cli"],
3129
install_requires=[open("requirements.txt").read().strip().split("\n")],
32-
long_description=(
33-
open("README.rst").read() if os.path.exists("README.rst") else ""
34-
),
3530
extras_require={"gcsfuse": ["fusepy"], "crc": ["crcmod"]},
3631
python_requires=">=3.9",
32+
long_description_content_type="text/markdown",
33+
long_description=open("README.md").read(),
3734
zip_safe=False,
3835
)

0 commit comments

Comments
 (0)