Skip to content

Commit 8f96fb5

Browse files
committed
Merge branch 'master' of github.com:mpi4py/mpi4py-fft
2 parents cc46fba + 85906f4 commit 8f96fb5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, macOS-latest]
12-
python-version: [3.6, 3.7, 3.8, 3.9]
12+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1313
name: Python ${{ matrix.python-version }} example
1414

1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
1818
- name: setup-conda
1919
uses: s-weigand/setup-conda@v1

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ The mpi4py-fft package can be installed using::
4242

4343
pip install mpi4py-fft
4444

45-
or, to get the latest version from bitbucket::
45+
or, to get the latest version from GitHub::
4646

47-
pip install git+https://bitbucket.org/mpi4py/mpi4py-fft@master
47+
pip install git+https://github.com/mpi4py/mpi4py-fft@master
4848

4949
Install with conda from the coda-forge channel::
5050

conf/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# - 'openmpi'
33
# - 'mpich'
44
numpy:
5-
- '1.19'
5+
- '1.21'

docs/source/dft.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ It is for multidimensional arrays that it starts to become
8080
interesting for the current software. Multidimensional arrays are a bit tedious
8181
with notation, though, especially when the number of dimensions grow. We will
8282
stick with the `index notation <https://en.wikipedia.org/wiki/Index_notation>`_
83-
because it is most stright forward in comparison with implementation.
83+
because it is most straightforward in comparison with implementation.
8484

8585
We denote the entries of a two-dimensional array as :math:`u_{j_0, j_1}`,
8686
which corresponds to a row-major matrix

0 commit comments

Comments
 (0)