Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Restrict dependency version bounds #124

Merged
merged 2 commits into from
Nov 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ deps/builds
docs/build
docs/site
.build_settings
Manifest.toml
9 changes: 4 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "FFTW"
uuid = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
version = "1.0.1"
version = "1.1.0"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand All @@ -9,12 +9,11 @@ Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
AbstractFFTs = "≥ 0.3.0"
BinaryProvider = "≥ 0.3.0"
julia = "^1.0.0"
AbstractFFTs = "0.5"
BinaryProvider = "0.5"
julia = "1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
16 changes: 2 additions & 14 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ fast Fourier transforms.

## Installation

The package is available for Julia versions 0.6 and up.
The package is available for Julia versions 1.0 and later.
To install it, run

```julia
using Pkg
Pkg.add("FFTW")
```

Expand All @@ -22,16 +23,3 @@ after that, the package will remember to use MKL when building and updating.
Note however that MKL provides only a subset of the functionality provided by FFTW. See
Intel's [documentation](https://software.intel.com/en-us/mkl-developer-reference-c-using-fftw3-wrappers)
for more information about potential differences or gaps in functionality.

## Note

These functions were formerly part of Base Julia.
Should any name conflicts occur on Julia versions which include these functions,
try adding

```julia
importall FFTW
```

to the top of your file.
If the problem persists, please open an issue on this package's repository.