Skip to content

Commit 31f0d88

Browse files
author
Max Jones
authored
Update links for GitHub org transfer (#88)
* Update links for GitHub org transfer * Update link to Code of Conduct * Update demo.ipynb
1 parent dbf86c4 commit 31f0d88

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: ❓ Usage question
4-
url: https://github.com/pangeo-data/xbatcher/discussions
4+
url: https://github.com/xarray-contrib/xbatcher/discussions
55
about: |
66
Ask questions and discuss with other community members here.

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
All contributors and maintainers must abide by the [Pangeo Code of Conduct](https://github.com/pangeo-data/governance/blob/master/conduct/code_of_conduct.md).
1+
All contributors and maintainers must abide by the [xarray-contrib organization Code of Conduct](https://github.com/xarray-contrib/.github/blob/main/CODE_OF_CONDUCT.md).

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ such as Keras_. View the |docs| for more info.
1111
.. _Keras: https://keras.io/
1212

1313

14-
.. |Build Status| image:: https://github.com/pangeo-data/xbatcher/workflows/CI/badge.svg
15-
:target: https://github.com/pangeo-data/xbatcher/actions
14+
.. |Build Status| image:: https://github.com/xarray-contrib/xbatcher/workflows/CI/badge.svg
15+
:target: https://github.com/xarray-contrib/xbatcher/actions
1616
:alt: github actions build status
17-
.. |codecov| image:: https://codecov.io/gh/pangeo-data/xbatcher/branch/main/graph/badge.svg
18-
:target: https://codecov.io/gh/pangeo-data/xbatcher
17+
.. |codecov| image:: https://codecov.io/gh/xarray-contrib/xbatcher/branch/main/graph/badge.svg
18+
:target: https://codecov.io/gh/xarray-contrib/xbatcher
1919
:alt: code coverage
2020
.. |docs| image:: http://readthedocs.org/projects/xbatcher/badge/?version=latest
2121
:target: http://xbatcher.readthedocs.org/en/latest/?badge=latest
@@ -24,5 +24,5 @@ such as Keras_. View the |docs| for more info.
2424
:target: https://pypi.python.org/pypi/xbatcher
2525
:alt: pypi
2626
.. |license| image:: https://img.shields.io/github/license/mashape/apistatus.svg
27-
:target: https://github.com/pangeo-data/xbatcher
27+
:target: https://github.com/xarray-contrib/xbatcher
2828
:alt: license

asv_bench/asv.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"install_timeout": 600,
5151

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

5555
// The Pythons you'd like to test against. If not provided, defaults
5656
// to the current version of Python used to run `asv`.

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def setup(app):
7474

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

8080
# sphinx-copybutton configurations (from https://github.com/pydata/xarray/blob/main/doc/conf.py)

doc/contributing.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Bug reports and feature requests
1515
================================
1616

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

2020
Contributing code
2121
==================
@@ -30,12 +30,12 @@ Forking
3030
-------
3131

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

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

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

246246
There is currently 1 workflow configured:
247247

248-
- `main.yaml <https://github.com/pangeo-data/xbatcher/blob/main/.github/workflows/main.yaml>`_ - Run test suite with pytest.
248+
- `main.yaml <https://github.com/xarray-contrib/xbatcher/blob/main/.github/workflows/main.yaml>`_ - Run test suite with pytest.

doc/demo.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1564,7 +1564,7 @@
15641564
"source": [
15651565
"## Last batch behavior\n",
15661566
"\n",
1567-
"If the input ds is not divisible by the specified `input_dims`, the remainder will be discarded instead of having a fractional batch. See https://github.com/pangeo-data/xbatcher/issues/5 for more on this topic."
1567+
"If the input ds is not divisible by the specified `input_dims`, the remainder will be discarded instead of having a fractional batch. See https://github.com/xarray-contrib/xbatcher/issues/5 for more on this topic."
15681568
]
15691569
},
15701570
{
@@ -3060,7 +3060,7 @@
30603060
"source": [
30613061
"## What's next?\n",
30623062
"\n",
3063-
"There are many additional useful features that were yet to be implemented in the context of batch generation for downstream machine learning model training purposes. One of the current efforts is adding a set of data loaders (see [working PR for PyTorch data loader](https://github.com/pangeo-data/xbatcher/pull/25)). \n",
3063+
"There are many additional useful features that were yet to be implemented in the context of batch generation for downstream machine learning model training purposes. One of the current efforts is to improve the set of data loaders. \n",
30643064
"\n",
30653065
"Additional features of interest can include: \n",
30663066
"\n",
@@ -3073,7 +3073,7 @@
30733073
"4. Handling preprocessing steps. For example, data augmentation, scaling/normalization, outlier detection, etc. \n",
30743074
"\n",
30753075
"\n",
3076-
"More thoughts on 1. and 2. can be found in [this issue](https://github.com/pangeo-data/xbatcher/issues/30). Interested users are welcomed to comment or submit other issues in GitHub. "
3076+
"More thoughts on 1. and 2. can be found in [this issue](https://github.com/xarray-contrib/xbatcher/issues/30). Interested users are welcomed to comment or submit other issues in GitHub. "
30773077
]
30783078
}
30793079
],

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Or via Conda as::
2020

2121
Or from source as::
2222

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

2525
Basic Usage
2626
-----------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
LICENSE = 'Apache'
99
AUTHOR = 'xbatcher Developers'
1010
AUTHOR_EMAIL = '[email protected]'
11-
URL = 'https://github.com/pangeo-data/xbatcher'
11+
URL = 'https://github.com/xarray-contrib/xbatcher'
1212
CLASSIFIERS = [
1313
'Development Status :: 4 - Beta',
1414
'License :: OSI Approved :: Apache Software License',

0 commit comments

Comments
 (0)