Skip to content

Commit

Permalink
fixup references to dask/gcsfs (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
isidentical authored Nov 5, 2021
1 parent 8f71152 commit 4de1707
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 #")}
2 changes: 1 addition & 1 deletion docs/source/developer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------
Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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 .
Expand Down
4 changes: 2 additions & 2 deletions gcsfs/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
license="BSD",
Expand Down

0 comments on commit 4de1707

Please sign in to comment.