diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b27ea87a..16299d6d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: shell: bash -l {0} run: | conda install -c conda-forge pip botocore aiobotocore "moto>=2.0" pytest flake8 black -y - pip install git+https://github.com/intake/filesystem_spec --no-deps + pip install git+https://github.com/fsspec/filesystem_spec --no-deps conda list conda --version diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ab4175a5..8d9804c9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,3 +1 @@ -Dask is a community maintained project. We welcome contributions in the form of bug reports, documentation, code, design proposals, and more. - -For general information on how to contribute see https://docs.dask.org/en/latest/develop.html. +s3fs is a community maintained project. We welcome contributions in the form of bug reports, documentation, code, design proposals, and more. diff --git a/README.rst b/README.rst index a603dd5f..cca4cbc2 100644 --- a/README.rst +++ b/README.rst @@ -10,8 +10,8 @@ View the documentation_ for s3fs. .. _documentation: http://s3fs.readthedocs.io/en/latest/ .. _aiobotocore: https://aiobotocore.readthedocs.io/en/latest/ -.. |Build Status| image:: https://github.com/dask/s3fs/workflows/CI/badge.svg - :target: https://github.com/dask/s3fs/actions +.. |Build Status| image:: https://github.com/fsspec/s3fs/workflows/CI/badge.svg + :target: https://github.com/fsspec/s3fs/actions :alt: Build Status .. |Doc Status| image:: https://readthedocs.org/projects/s3fs/badge/?version=latest :target: https://s3fs.readthedocs.io/en/latest/?badge=latest diff --git a/docs/source/conf.py b/docs/source/conf.py index 87a83060..b7ea58bf 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -113,7 +113,7 @@ todo_include_todos = False extlinks = { - "pr": ("https://github.com/dask/s3fs/pull/%s", "PR #"), + "pr": ("https://github.com/fsspec/s3fs/pull/%s", "PR #"), } diff --git a/docs/source/install.rst b/docs/source/install.rst index 23d5dcc7..90cacd86 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -22,6 +22,6 @@ Install from source You can also download the ``s3fs`` library from Github and install normally:: - git clone git@github.com:dask/s3fs + git clone git@github.com:fsspec/s3fs cd s3fs python setup.py install diff --git a/release-procedure.md b/release-procedure.md index 52f34617..4332616e 100644 --- a/release-procedure.md +++ b/release-procedure.md @@ -8,7 +8,7 @@ 4. Push new version bump commit and tag to github - git push dask main --tags + git push fsspec main --tags 5. Build source and wheel packages diff --git a/s3fs/tests/test_s3fs.py b/s3fs/tests/test_s3fs.py index f605d172..fe9dca16 100644 --- a/s3fs/tests/test_s3fs.py +++ b/s3fs/tests/test_s3fs.py @@ -2174,7 +2174,7 @@ def test_leading_forward_slash(s3): def test_lsdir(s3): - # https://github.com/dask/s3fs/issues/475 + # https://github.com/fsspec/s3fs/issues/475 s3.find(test_bucket_name) d = test_bucket_name + "/test" diff --git a/setup.py b/setup.py index 7569ab18..c9bfb52c 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ 'Programming Language :: Python :: 3.9', ], description='Convenient Filesystem interface over S3', - url='http://github.com/dask/s3fs/', + url='http://github.com/fsspec/s3fs/', maintainer='Martin Durant', maintainer_email='mdurant@continuum.io', license='BSD',