Skip to content

Commit fd7988a

Browse files
committed
Update Readme URLs
1 parent 55979df commit fd7988a

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

.releash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
xfftw.release_targets.append(gittag_xfftw)
2323
xfftw.release_targets.append(gitpush)
2424

25-
source_tarball_filename = 'https://github.com/egpbos/xtensor-fftw/archive/{version}.tar.gz'.format(version=version_xfftw)
25+
source_tarball_filename = 'https://github.com/xtensor-stack/xtensor-fftw/archive/{version}.tar.gz'.format(version=version_xfftw)
2626
conda_forge_xfftw = ReleaseTargetCondaForge(xfftw, '../xtensor-fftw-feedstock', source_tarball_filename=source_tarball_filename)
2727
xfftw.release_targets.append(conda_forge_xfftw)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ set(CMAKE_CXX_EXTENSIONS NO)
6666
include_directories(${XTENSOR_FFTW_INCLUDE_DIR})
6767

6868
# .. xtensor
69-
set(xtensor_REQUIRED_VERSION 0.21.2)
69+
set(xtensor_REQUIRED_VERSION 0.20.9)
7070
find_package(xtensor ${xtensor_REQUIRED_VERSION} REQUIRED)
7171
message(STATUS "Found xtensor: ${xtensor_INCLUDE_DIRS}/xtensor")
7272
include_directories(${xtensor_INCLUDE_DIRS})

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ![xtensor-fftw](xtensor-fftw.svg)
22

3-
[FFTW](http://www.fftw.org/) bindings for the [xtensor](https://github.com/QuantStack/xtensor) C++ multi-dimensional array library.
3+
[FFTW](http://www.fftw.org/) bindings for the [xtensor](https://github.com/xtensor-stack/xtensor) C++ multi-dimensional array library.
44

55
[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/xtensor-stack/xtensor-fftw/stable?filepath=notebooks%2Fintensely_edgy_cat.ipynb)
66
[![Join the Gitter Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/QuantStack/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
@@ -15,7 +15,7 @@
1515

1616
## Introduction
1717

18-
_xtensor-fftw_ enables easy access to Fast Fourier Transforms (FFTs) from the [FFTW library](http://www.fftw.org/) for use on `xarray` numerical arrays from the [_xtensor_](https://github.com/QuantStack/xtensor) library.
18+
_xtensor-fftw_ enables easy access to Fast Fourier Transforms (FFTs) from the [FFTW library](http://www.fftw.org/) for use on `xarray` numerical arrays from the [_xtensor_](https://github.com/xtensor-stack/xtensor) library.
1919

2020
Syntax and functionality are inspired by `numpy.fft`, the FFT module in the Python array programming library [NumPy](http://www.numpy.org/).
2121

@@ -42,13 +42,14 @@ make install
4242

4343
## Dependencies
4444

45-
* [xtensor](https://github.com/QuantStack/xtensor)
45+
* [xtensor](https://github.com/xtensor-stack/xtensor)
46+
* [xtl](https://github.com/xtensor-stack/xtl)
4647
* [FFTW](http://www.fftw.org/) version 3
4748
* A compiler supporting C++14
4849

49-
| `xtensor-fftw` | `xtensor` | `xtl` | `fftw` |
50-
|----------------|-----------|---------|---------|
51-
| master | ^0.21.2 | ^0.6.9 | ^3.3.8 |
50+
| `xtensor-fftw` | `xtensor` | `xtl` | `fftw` |
51+
|----------------|------------------|---------|---------|
52+
| master | >=0.20.9,<0.22 | ^0.6.9 | ^3.3.8 |
5253

5354
## Usage
5455

@@ -115,7 +116,7 @@ sin_derivative: { 1.000000e+00, 9.995066e-01, 9.980267e-01, 9.955620e-01, ...
115116
```
116117
117118
### Interactive examples
118-
See the [notebooks folder](https://github.com/xtensor-stack/xtensor-fftw/tree/master/notebooks) for interactive Jupyter notebook examples using the C++14 [_xeus-cling_](https://github.com/QuantStack/xeus-cling) kernel. These can also be run from Binder, [e.g. this one](https://mybinder.org/v2/gh/xtensor-stack/xtensor-fftw/master?filepath=notebooks%2Fintensely_edgy_cat.ipynb).
119+
See the [notebooks folder](https://github.com/xtensor-stack/xtensor-fftw/tree/master/notebooks) for interactive Jupyter notebook examples using the C++14 [_xeus-cling_](https://github.com/jupyter-xeus/xeus-cling) kernel. These can also be run from Binder, [e.g. this one](https://mybinder.org/v2/gh/xtensor-stack/xtensor-fftw/stable?filepath=notebooks%2Fintensely_edgy_cat.ipynb).
119120
120121
121122
## Building and running tests

bench/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
############################################################################
88
#
99
# Original version of this file:
10-
# https://github.com/QuantStack/xtensor/blob/master/test/CMakeLists.txt
10+
# https://github.com/xtensor-stack/xtensor/blob/master/test/CMakeLists.txt
1111
# commit e25330a7fe7a303c65b97ac3792a0ff934712551
1212
#
1313
# Adaptation from GoogleTest to Google Benchmark:

include/xtensor-fftw/basic.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* basic.hpp:
1010
* Contains the basic functions needed to do FFTs and inverse FFTs on real and
1111
* complex arrays. The behavior of these functions mimics that of the numpy.fft
12-
* module, see https://github.com/egpbos/xtensor-fftw/issues/6.
12+
* module, see https://github.com/xtensor-stack/xtensor-fftw/issues/6.
1313
*
1414
*/
1515

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
############################################################################
88
#
99
# Original version of this file:
10-
# https://github.com/QuantStack/xtensor/blob/master/test/CMakeLists.txt
10+
# https://github.com/xtensor-stack/xtensor/blob/master/test/CMakeLists.txt
1111
# commit e25330a7fe7a303c65b97ac3792a0ff934712551
1212
#
1313
# Modifications:

0 commit comments

Comments
 (0)