From de3ce819c4c9b74ffe97261e1f316431ff50fd40 Mon Sep 17 00:00:00 2001 From: "Tamas K. Papp" Date: Mon, 10 Aug 2020 12:33:04 +0200 Subject: [PATCH] add compat bounds, CompatHelper, prepare for release (#86) * add compat bounds, CompatHelper, prepare for release * FFTW 1 is enough --- .github/workflows/CompatHelper.yml | 16 ++++++++++++++++ Project.toml | 10 +++++++--- 2 files changed, 23 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/CompatHelper.yml diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml new file mode 100644 index 00000000..bcdb51ab --- /dev/null +++ b/.github/workflows/CompatHelper.yml @@ -0,0 +1,16 @@ +name: CompatHelper +on: + schedule: + - cron: '00 00 * * *' + workflow_dispatch: +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.COMPATHELPER_PRIV }} # optional + run: julia -e 'using CompatHelper; CompatHelper.main()' diff --git a/Project.toml b/Project.toml index a5fe721b..d516ae36 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "KernelDensity" uuid = "5ab0869b-81aa-558d-bb23-cbf5423bbe9b" authors = ["Simon Byrne and various contributors"] -version = "0.5.1" +version = "0.6.0" [deps] Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f" @@ -11,8 +11,12 @@ Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" [compat] -Interpolations = "≥ 0.9" -julia = "^1" +julia = "1" +Distributions = "0.23" +DocStringExtensions = "0.8" +Interpolations = "0.9, 0.10, 0.11, 0.12" +FFTW = "1" +StatsBase = "0.33" [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"