From e99c29cbff641229afcfdbadfd70732349589dc7 Mon Sep 17 00:00:00 2001 From: Kenichi Maehashi Date: Tue, 14 Jul 2020 23:50:22 +0900 Subject: [PATCH] update url and email --- .github/CONTRIBUTING.md | 2 +- CODE_OF_CONDUCT.md | 2 +- README.md | 16 ++++++++-------- cupy/__init__.py | 2 +- cupy/core/core.pyx | 2 +- cupy_setup_build.py | 4 ++-- setup.py | 4 ++-- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 70f22409e5d..c0f4c94d82a 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,2 +1,2 @@ -Please refer to [our Contribution Guide](https://docs-cupy.chainer.org/en/stable/contribution.html). +Please refer to [our Contribution Guide](https://docs.cupy.dev/en/stable/contribution.html). diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 0c637bc3d27..3ad1a10a590 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -2,6 +2,6 @@ CuPy follows the [NumFOCUS Code of Conduct][homepage] available at https://numfocus.org/code-of-conduct. -Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at chainer@preferred.jp. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at `dlfw@preferred.jp`. [homepage]: https://numfocus.org/ diff --git a/README.md b/README.md index 0375910091a..de9c80c2e85 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,14 @@ [![GitHub license](https://img.shields.io/github/license/cupy/cupy.svg)](https://github.com/cupy/cupy) [![travis](https://img.shields.io/travis/cupy/cupy.svg)](https://travis-ci.org/cupy/cupy) [![coveralls](https://img.shields.io/coveralls/cupy/cupy.svg)](https://coveralls.io/github/cupy/cupy) -[![Read the Docs](https://readthedocs.org/projects/cupy/badge/?version=stable)](https://docs-cupy.chainer.org/en/stable/) +[![Read the Docs](https://readthedocs.org/projects/cupy/badge/?version=stable)](https://docs.cupy.dev/en/stable/) [![Twitter](https://img.shields.io/twitter/follow/CuPy_Team?label=%40CuPy_Team)](https://twitter.com/CuPy_Team) -[**Website**](https://cupy.chainer.org/) -| [**Docs**](https://docs-cupy.chainer.org/en/stable/) -| [**Install Guide**](https://docs-cupy.chainer.org/en/stable/install.html) -| [**Tutorial**](https://docs-cupy.chainer.org/en/stable/tutorial/) -| **Examples** ([Official](https://github.com/cupy/cupy/tree/master/examples)) +[**Website**](https://cupy.dev/) +| [**Docs**](https://docs.cupy.dev/en/stable/) +| [**Install Guide**](https://docs.cupy.dev/en/stable/install.html) +| [**Tutorial**](https://docs.cupy.dev/en/stable/tutorial/) +| [**Examples**](https://github.com/cupy/cupy/tree/master/examples) | **Forum** ([en](https://groups.google.com/forum/#!forum/cupy), [ja](https://groups.google.com/forum/#!forum/cupy-ja)) *CuPy* is an implementation of NumPy-compatible multi-dimensional array on CUDA. @@ -22,7 +22,7 @@ It supports a subset of `numpy.ndarray` interface. ## Installation -For detailed instructions on installing CuPy, see [the installation guide](https://docs-cupy.chainer.org/en/stable/install.html). +For detailed instructions on installing CuPy, see [the installation guide](https://docs.cupy.dev/en/stable/install.html). You can install CuPy using `pip`: @@ -67,7 +67,7 @@ $ nvidia-docker run -it cupy/cupy /bin/bash ## Development -Please see [the contribution guide](https://docs-cupy.chainer.org/en/stable/contribution.html). +Please see [the contribution guide](https://docs.cupy.dev/en/stable/contribution.html). ## More information diff --git a/cupy/__init__.py b/cupy/__init__.py index ceed97d1254..aa038a81bdf 100644 --- a/cupy/__init__.py +++ b/cupy/__init__.py @@ -33,7 +33,7 @@ $ pip install cupy --no-cache-dir -vvvv Check the Installation Guide for details: - https://docs-cupy.chainer.org/en/latest/install.html + https://docs.cupy.dev/en/latest/install.html original error: {}'''.format(exc_info[1])) # NOQA diff --git a/cupy/core/core.pyx b/cupy/core/core.pyx index d38b0998078..3d816203d99 100644 --- a/cupy/core/core.pyx +++ b/cupy/core/core.pyx @@ -1355,7 +1355,7 @@ cdef class ndarray: # Don't use for now, interface uncertain # elif method =='at' and name == 'add': # the only ufunc attribute currently - # http://docs-cupy.chainer.org/en/stable/reference/ufunc.html#ufunc-at + # http://docs.cupy.dev/en/stable/reference/ufunc.html#ufunc-at # self.scatter_add(*inputs, **kwargs) else: return NotImplemented diff --git a/cupy_setup_build.py b/cupy_setup_build.py index 19039b23def..02e309d377a 100644 --- a/cupy_setup_build.py +++ b/cupy_setup_build.py @@ -446,7 +446,7 @@ def preconfigure_modules(compiler, settings): '', ] + lines + [ 'Please refer to the Installation Guide for details:', - 'https://docs-cupy.chainer.org/en/stable/install.html', + 'https://docs.cupy.dev/en/stable/install.html', '', ] @@ -748,7 +748,7 @@ def check_extensions(extensions): raise RuntimeError('''\ Missing file: {} Please install Cython {} or later. Please also check the version of Cython. -See https://docs-cupy.chainer.org/en/stable/install.html for details. +See https://docs.cupy.dev/en/stable/install.html for details. '''.format(f, required_cython_version)) diff --git a/setup.py b/setup.py index 8231af044aa..5c5643c831b 100644 --- a/setup.py +++ b/setup.py @@ -173,11 +173,11 @@ def reduce_requirements(key): long_description=long_description, author='Seiya Tokui', author_email='tokui@preferred.jp', - url='https://cupy.chainer.org/', + url='https://cupy.dev/', license='MIT License', project_urls={ "Bug Tracker": "https://github.com/cupy/cupy/issues", - "Documentation": "https://docs-cupy.chainer.org/", + "Documentation": "https://docs.cupy.dev/", "Source Code": "https://github.com/cupy/cupy", }, classifiers=[_f for _f in CLASSIFIERS.split('\n') if _f],