Skip to content

Commit

Permalink
update url and email
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaehashi committed Jul 14, 2020
1 parent 92ab7b4 commit e99c29c
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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).

2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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`:

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion cupy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion cupy/core/core.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions cupy_setup_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
'',
]

Expand Down Expand Up @@ -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))


Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,11 @@ def reduce_requirements(key):
long_description=long_description,
author='Seiya Tokui',
author_email='[email protected]',
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],
Expand Down

0 comments on commit e99c29c

Please sign in to comment.