diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38343f5e..c335aa71 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: shell: bash -l {0} run: | conda install -c conda-forge pytest ujson requests decorator google-auth vcrpy aiohttp google-auth-oauthlib flake8 black google-cloud-core google-api-core google-api-python-client -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 79c7cf31..ebecedf7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,4 @@ -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. +gcsfs is a community maintained project. We welcome contributions in the form of bug reports, documentation, code, design proposals, and more. ## Project specific notes diff --git a/README.rst b/README.rst index 83e1dfe6..0eb6d652 100644 --- a/README.rst +++ b/README.rst @@ -10,8 +10,8 @@ For documentation, go to readthedocs_. .. _readthedocs: http://gcsfs.readthedocs.io/en/latest/ -.. |Build Status| image:: https://github.com/dask/gcsfs/workflows/CI/badge.svg - :target: https://github.com/dask/gcsfs/actions +.. |Build Status| image:: https://github.com/fsspec/gcsfs/workflows/CI/badge.svg + :target: https://github.com/fsspec/gcsfs/actions :alt: Build Status .. |Doc Status| image:: https://readthedocs.org/projects/gcsfs/badge/?version=latest :target: https://gcsfs.readthedocs.io/en/latest/?badge=latest diff --git a/docs/source/conf.py b/docs/source/conf.py index fd8009aa..0f6ab1f5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -298,4 +298,4 @@ # If true, do not generate a @detailmenu in the "Top" node's menu. # texinfo_no_detailmenu = False -extlinks = {"pr": ("https://github.com/dask/gcsfs/pull/%s", "PR #")} +extlinks = {"pr": ("https://github.com/fsspec/gcsfs/pull/%s", "PR #")} diff --git a/docs/source/developer.rst b/docs/source/developer.rst index 977cf528..a5248669 100644 --- a/docs/source/developer.rst +++ b/docs/source/developer.rst @@ -5,7 +5,7 @@ We welcome contributions to gcsfs! Please file issues and requests on github_ and we welcome pull requests. -.. _github: https://github.com/dask/gcsfs/issues +.. _github: https://github.com/fsspec/gcsfs/issues Testing ------- diff --git a/docs/source/index.rst b/docs/source/index.rst index fffae458..e2f9264f 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -7,7 +7,7 @@ This software is beta, use at your own risk. Please file issues and requests on github_ and we welcome pull requests. -.. _github: https://github.com/dask/gcsfs/issues +.. _github: https://github.com/fsspec/gcsfs/issues This package depends on fsspec_ , and inherits many useful behaviours from there, @@ -31,7 +31,7 @@ or by cloning the repository: .. code-block:: bash - git clone https://github.com/dask/gcsfs/ + git clone https://github.com/fsspec/gcsfs/ cd gcsfs/ pip install . diff --git a/gcsfs/tests/test_core.py b/gcsfs/tests/test_core.py index 7ccba0b2..6fce2df8 100644 --- a/gcsfs/tests/test_core.py +++ b/gcsfs/tests/test_core.py @@ -150,7 +150,7 @@ def test_pickle(gcs): gcs2 = pickle.loads(b) - # since https://github.com/intake/filesystem_spec/pull/155 + # since https://github.com/fsspec/filesystem_spec/pull/155 assert gcs.session is gcs2.session gcs.touch(a) assert gcs.ls(TEST_BUCKET) == gcs2.ls(TEST_BUCKET) @@ -935,7 +935,7 @@ def test_zero_cache_timeout(gcs): gcs.ls(f"gs://{TEST_BUCKET}/a/") # The _times entry and exception below should only be present after - # https://github.com/intake/filesystem_spec/pull/513. + # https://github.com/fsspec/filesystem_spec/pull/513. if f"{TEST_BUCKET}/a" not in gcs.dircache._times: pytest.skip("fsspec version too early") diff --git a/setup.py b/setup.py index 6252a9ce..0ce63c86 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ version=versioneer.get_version(), cmdclass=versioneer.get_cmdclass(), description="Convenient Filesystem interface over GCS", - url="https://github.com/dask/gcsfs", + url="https://github.com/fsspec/gcsfs", maintainer="Martin Durant", maintainer_email="mdurant@anaconda.com", license="BSD",