Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update links for GitHub org transfer #88

Merged
merged 3 commits into from
Aug 26, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
blank_issues_enabled: false
contact_links:
- name: ❓ Usage question
url: https://github.com/pangeo-data/xbatcher/discussions
url: https://github.com/xarray-contrib/xbatcher/discussions
about: |
Ask questions and discuss with other community members here.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ such as Keras_. View the |docs| for more info.
.. _Keras: https://keras.io/


.. |Build Status| image:: https://github.com/pangeo-data/xbatcher/workflows/CI/badge.svg
:target: https://github.com/pangeo-data/xbatcher/actions
.. |Build Status| image:: https://github.com/xarray-contrib/xbatcher/workflows/CI/badge.svg
:target: https://github.com/xarray-contrib/xbatcher/actions
:alt: github actions build status
.. |codecov| image:: https://codecov.io/gh/pangeo-data/xbatcher/branch/main/graph/badge.svg
:target: https://codecov.io/gh/pangeo-data/xbatcher
.. |codecov| image:: https://codecov.io/gh/xarray-contrib/xbatcher/branch/main/graph/badge.svg
:target: https://codecov.io/gh/xarray-contrib/xbatcher
:alt: code coverage
.. |docs| image:: http://readthedocs.org/projects/xbatcher/badge/?version=latest
:target: http://xbatcher.readthedocs.org/en/latest/?badge=latest
Expand All @@ -24,5 +24,5 @@ such as Keras_. View the |docs| for more info.
:target: https://pypi.python.org/pypi/xbatcher
:alt: pypi
.. |license| image:: https://img.shields.io/github/license/mashape/apistatus.svg
:target: https://github.com/pangeo-data/xbatcher
:target: https://github.com/xarray-contrib/xbatcher
:alt: license
2 changes: 1 addition & 1 deletion asv_bench/asv.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"install_timeout": 600,

// the base URL to show a commit for the project.
// "show_commit_url": "http://github.com/pangeo-data/xbatcher/commit/",
// "show_commit_url": "http://github.com/xarray-contrib/xbatcher/commit/",

// The Pythons you'd like to test against. If not provided, defaults
// to the current version of Python used to run `asv`.
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def setup(app):

# link to github issues
extlinks = {
'issue': ('https://github.com/pangeo-data/xbatcher/issues/%s', 'GH')
'issue': ('https://github.com/xarray-contrib/xbatcher/issues/%s', 'GH')
}

# sphinx-copybutton configurations (from https://github.com/pydata/xarray/blob/main/doc/conf.py)
Expand Down
8 changes: 4 additions & 4 deletions doc/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Bug reports and feature requests
================================

To report bugs or request new features, head over to the `xbatcher repository
<https://github.com/pangeo-data/xbatcher/issues>`_.
<https://github.com/xarray-contrib/xbatcher/issues>`_.

Contributing code
==================
Expand All @@ -30,12 +30,12 @@ Forking
-------

You will need your own fork to work on the code. Go to the `xbatcher project
page <https://github.com/pangeo-data/xbatcher>`_ and hit the ``Fork`` button.
page <https://github.com/xarray-contrib/xbatcher>`_ and hit the ``Fork`` button.
You will need to clone your fork to your machine::

git clone [email protected]:yourusername/xbatcher.git
cd xbatcher
git remote add upstream [email protected]:pangeo-data/xbatcher.git
git remote add upstream [email protected]:xarray-contrib/xbatcher.git

This creates the directory ``xbatcher`` and connects your repository to
the upstream (main project) *xbatcher* repository.
Expand Down Expand Up @@ -245,4 +245,4 @@ Continuous integration is done with `GitHub Actions <https://docs.github.com/en/

There is currently 1 workflow configured:

- `main.yaml <https://github.com/pangeo-data/xbatcher/blob/main/.github/workflows/main.yaml>`_ - Run test suite with pytest.
- `main.yaml <https://github.com/xarray-contrib/xbatcher/blob/main/.github/workflows/main.yaml>`_ - Run test suite with pytest.
2 changes: 1 addition & 1 deletion doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Or via Conda as::

Or from source as::

pip install git+https://github.com/pangeo-data/xbatcher.git
pip install git+https://github.com/xarray-contrib/xbatcher.git

Basic Usage
-----------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
LICENSE = 'Apache'
AUTHOR = 'xbatcher Developers'
AUTHOR_EMAIL = '[email protected]'
URL = 'https://github.com/pangeo-data/xbatcher'
URL = 'https://github.com/xarray-contrib/xbatcher'
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
Expand Down