Skip to content

Commit de3ce81

Browse files
authored
add compat bounds, CompatHelper, prepare for release (#86)
* add compat bounds, CompatHelper, prepare for release * FFTW 1 is enough
1 parent be9881b commit de3ce81

File tree

2 files changed

+23
-3
lines changed

2 files changed

+23
-3
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: '00 00 * * *'
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }} # optional
16+
run: julia -e 'using CompatHelper; CompatHelper.main()'

Project.toml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "KernelDensity"
22
uuid = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b"
33
authors = ["Simon Byrne and various contributors"]
4-
version = "0.5.1"
4+
version = "0.6.0"
55

66
[deps]
77
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
@@ -11,8 +11,12 @@ Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59"
1111
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1212

1313
[compat]
14-
Interpolations = "≥ 0.9"
15-
julia = "^1"
14+
julia = "1"
15+
Distributions = "0.23"
16+
DocStringExtensions = "0.8"
17+
Interpolations = "0.9, 0.10, 0.11, 0.12"
18+
FFTW = "1"
19+
StatsBase = "0.33"
1620

1721
[extras]
1822
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

0 commit comments

Comments
 (0)