Skip to content

Commit f86800f

Browse files
committed
Getting rid of bitbucket in docs
1 parent bfa139f commit f86800f

File tree

5 files changed

+13
-17
lines changed

5 files changed

+13
-17
lines changed

Diff for: docs/paper/paper.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ internal energy, chemical species, and momentum. The
4040
FFT has been named *the most important numerical algorithm of our
4141
time* by Professor Gilbert Strang [@strang94].
4242

43-
``mpi4py-fft`` (https://bitbucket.org/mpi4py/mpi4py-fft) is an
43+
``mpi4py-fft`` (https://github.com/mpi4py/mpi4py-fft) is an
4444
open-source Python package for computing (in parallel) FFTs of
4545
possibly very large and distributed multidimensional arrays. A
4646
multidimensional FFT is computed in sequence, over all axes, one axis

Diff for: docs/source/howtocite.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ Please cite mpi4py-fft using
1515
@electronic{mpi4py-fft,
1616
author = {{Lisandro Dalcin and Mikael Mortensen}},
1717
title = {{mpi4py-fft}},
18-
url = {{https://bitbucket.org/mpi4py/mpi4py-fft}}
18+
url = {{https://github.com/mpi4py/mpi4py-fft}}
1919
}

Diff for: docs/source/howtocontribute.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ How to contribute?
33

44
Mpi4py-fft is an open source project and anyone is welcome to contribute.
55
An easy way to get started is by suggesting a new enhancement on the
6-
`issue tracker <https://bitbucket.org/mpi4py/mpi4py-fft/issues>`_. If you have
6+
`issue tracker <https://github.com/mpi4py/mpi4py-fft/issues>`_. If you have
77
found a bug, then either report this on the issue tracker, er even better, make
88
a fork of the repository, fix the bug and then create a
9-
`pull request <https://bitbucket.org/mpi4py/mpi4py-fft/pull-requests/>`_
9+
`pull request <https://github.com/mpi4py/mpi4py-fft/pulls>`_
1010
to get the fix into the master branch.

Diff for: docs/source/installation.rst

+8-12
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ can be achieved with
3030
conda activate mpi4py-fft
3131

3232
Note that this gives you mpi4py-fft with default settings. This means that
33-
you will probably get the openmpi backend. To make a specific choice of
33+
you will probably get the openmpi backend. To make a specific choice of
3434
backend just specify which, like this
3535

3636
::
@@ -45,13 +45,11 @@ any version of mpi4py-fft hosted on `pypi`_ using `pip`_
4545

4646
pip install mpi4py-fft
4747

48-
whereas either one of the following will install the latest version
49-
from github
48+
whereas the following will install the latest version from github
5049

5150
::
5251

53-
pip install git+https://bitbucket.org/mpi4py/mpi4py-fft@master
54-
pip install https://bitbucket.org/mpi4py/mpi4py-fft/get/master.zip
52+
pip install git+https://github.com/mpi4py/mpi4py-fft@master
5553

5654
You can also build mpi4py-fft yourselves from the top directory,
5755
after cloning or forking
@@ -74,7 +72,7 @@ Additional dependencies
7472

7573
For storing and retrieving data you need either `HDF5`_ or `netCDF4`_, compiled
7674
with support for MPI. Both are available
77-
with parallel support on `conda-forge`_ and can be installed into the
75+
with parallel support on `conda-forge`_ and can be installed into the
7876
current conda environment as
7977

8078
::
@@ -100,14 +98,12 @@ located in the ``tests`` folder. A range of tests may be run using the
10098

10199
This test-suit is run automatically on every commit to github, see, e.g.,
102100

103-
.. image:: https://circleci.com/bb/mpi4py/mpi4py-fft.svg?style=svg
104-
:target: https://circleci.com/bb/mpi4py/mpi4py-fft
101+
.. image:: https://dev.azure.com/mpi4py/mpi4py-fft/_apis/build/status/mpi4py.mpi4py-fft?branchName=master
102+
:target: https://dev.azure.com/mpi4py/mpi4py-fft
105103

106-
107-
.. _mpi4py-fft: https://bitbucket.org/mpi4py/mpi4py-fft
108-
.. _mpi4py: https://bitbucket.org/mpi4py/mpi4py
104+
.. _mpi4py-fft: https://github.com/mpi4py/mpi4py-fft
105+
.. _mpi4py: https://github.com/mpi4py/mpi4py
109106
.. _cython: http://cython.org
110-
.. _spectralDNS channel: https://anaconda.org/spectralDNS
111107
.. _conda: https://conda.io/docs/
112108
.. _conda-forge: https://conda-forge.org
113109
.. _FFTW: http://www.fftw.org

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def version():
193193
description="mpi4py-fft -- Parallel Fast Fourier Transforms (FFTs) using MPI for Python",
194194
long_description=long_description,
195195
author="Lisandro Dalcin and Mikael Mortensen",
196-
url='https://bitbucket.org/mpi4py/mpi4py-fft',
196+
url='https://github.com/mpi4py/mpi4py-fft',
197197
packages=["mpi4py_fft",
198198
"mpi4py_fft.fftw",
199199
"mpi4py_fft.io"],

0 commit comments

Comments
 (0)