Skip to content

Commit

Permalink
Merge pull request #4 from ludvigak/master
Browse files Browse the repository at this point in the history
Alignment with master
  • Loading branch information
jkrimmer committed Aug 3, 2020
2 parents c03b7f6 + 5c8ea82 commit 2ad74a6
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 4 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/CompatHelper.yml
@@ -0,0 +1,17 @@
name: CompatHelper

on:
schedule:
- cron: '00 00 * * *'

jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
1 change: 1 addition & 0 deletions .github/workflows/TagBot.yml
Expand Up @@ -9,3 +9,4 @@ jobs:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
7 changes: 4 additions & 3 deletions Project.toml
@@ -1,16 +1,17 @@
name = "FINUFFT"
uuid = "d8beea63-0952-562e-9c6a-8e8ef7364055"
author = "Ludvig af Klinteberg <ludvigak@kth.se>"
version = "0.4.2"
version = "1.0.0"

[deps]
BinDeps = "9e28174c-4ba2-5203-b857-d8d62c4213ee"
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"

[compat]
BinDeps = "≥ 0.8.10"
julia = "≥ 1.0.0"
BinDeps = "1.0"
Conda = "1.4"
julia = "1.0"

[extras]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -14,7 +14,7 @@ add FINUFFT
test FINUFFT
```

This should download, build and test FINUFFT v1.1.1, as long as you have `gcc` and `curl` installed. The FFTW library is downloaded locally by the build script, using [Conda.jl](https://github.com/JuliaPy/Conda.jl)
This should download, build and test FINUFFT v1.1.2, as long as you have `gcc` and `curl` installed. The FFTW library is downloaded locally by the build script, using [Conda.jl](https://github.com/JuliaPy/Conda.jl)

Developed and tested on Linux. Also works on Max OS X, but build script is hardwired to use GCC 9 (`g++-9` and `gcc-9`).

Expand Down

0 comments on commit 2ad74a6

Please sign in to comment.