Skip to content

Commit c1e2060

Browse files
committed
fixup references to dask/s3fs
1 parent 6f47de4 commit c1e2060

File tree

8 files changed

+9
-11
lines changed

8 files changed

+9
-11
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
shell: bash -l {0}
3535
run: |
3636
conda install -c conda-forge pip botocore aiobotocore "moto>=2.0" pytest flake8 black -y
37-
pip install git+https://github.com/intake/filesystem_spec --no-deps
37+
pip install git+https://github.com/fsspec/filesystem_spec --no-deps
3838
conda list
3939
conda --version
4040

CONTRIBUTING.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
Dask is a community maintained project. We welcome contributions in the form of bug reports, documentation, code, design proposals, and more.
2-
3-
For general information on how to contribute see https://docs.dask.org/en/latest/develop.html.
1+
s3fs is a community maintained project. We welcome contributions in the form of bug reports, documentation, code, design proposals, and more.

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ View the documentation_ for s3fs.
1010
.. _documentation: http://s3fs.readthedocs.io/en/latest/
1111
.. _aiobotocore: https://aiobotocore.readthedocs.io/en/latest/
1212

13-
.. |Build Status| image:: https://github.com/dask/s3fs/workflows/CI/badge.svg
14-
:target: https://github.com/dask/s3fs/actions
13+
.. |Build Status| image:: https://github.com/fsspec/s3fs/workflows/CI/badge.svg
14+
:target: https://github.com/fsspec/s3fs/actions
1515
:alt: Build Status
1616
.. |Doc Status| image:: https://readthedocs.org/projects/s3fs/badge/?version=latest
1717
:target: https://s3fs.readthedocs.io/en/latest/?badge=latest

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
todo_include_todos = False
114114

115115
extlinks = {
116-
"pr": ("https://github.com/dask/s3fs/pull/%s", "PR #"),
116+
"pr": ("https://github.com/fsspec/s3fs/pull/%s", "PR #"),
117117
}
118118

119119

docs/source/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ Install from source
2222

2323
You can also download the ``s3fs`` library from Github and install normally::
2424

25-
git clone [email protected]:dask/s3fs
25+
git clone [email protected]:fsspec/s3fs
2626
cd s3fs
2727
python setup.py install

release-procedure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
4. Push new version bump commit and tag to github
1010

11-
git push dask main --tags
11+
git push fsspec main --tags
1212

1313
5. Build source and wheel packages
1414

s3fs/tests/test_s3fs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2174,7 +2174,7 @@ def test_leading_forward_slash(s3):
21742174

21752175

21762176
def test_lsdir(s3):
2177-
# https://github.com/dask/s3fs/issues/475
2177+
# https://github.com/fsspec/s3fs/issues/475
21782178
s3.find(test_bucket_name)
21792179

21802180
d = test_bucket_name + "/test"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
'Programming Language :: Python :: 3.9',
2626
],
2727
description='Convenient Filesystem interface over S3',
28-
url='http://github.com/dask/s3fs/',
28+
url='http://github.com/fsspec/s3fs/',
2929
maintainer='Martin Durant',
3030
maintainer_email='[email protected]',
3131
license='BSD',

0 commit comments

Comments
 (0)