diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml new file mode 100644 index 0000000..815c2e5 --- /dev/null +++ b/.github/workflows/CompatHelper.yml @@ -0,0 +1,33 @@ +name: CompatHelper + +on: + schedule: + - cron: "00 04 * * 6" + workflow_dispatch: + +jobs: + CompatHelper: + runs-on: ubuntu-latest + steps: + - name: "Add the General registry via Git" + run: | + import Pkg + ENV["JULIA_PKG_SERVER"] = "" + Pkg.Registry.add("General") + shell: julia --color=yes {0} + - name: "Install CompatHelper" + run: | + import Pkg + name = "CompatHelper" + uuid = "aa819f21-2bde-4658-8897-bab36330d9b7" + version = "3" + Pkg.add(; name, uuid, version) + shell: julia --color=yes {0} + - name: "Run CompatHelper" + run: | + using CompatHelper + CompatHelper.main(; subdirs=["turing"], entry_type=DropEntry()) + shell: julia --color=yes {0} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }} diff --git a/dprint.json b/dprint.json deleted file mode 100644 index 235ef02..0000000 --- a/dprint.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "json": { - }, - "markdown": { - }, - "toml": { - }, - "excludes": [ - "**/*-lock.json" - ], - "plugins": [ - "https://plugins.dprint.dev/json-0.19.0.wasm", - "https://plugins.dprint.dev/markdown-0.16.2.wasm", - "https://plugins.dprint.dev/toml-0.5.4.wasm" - ] -} diff --git a/turing/Project.toml b/turing/Project.toml index 9140b85..ecf48ae 100644 --- a/turing/Project.toml +++ b/turing/Project.toml @@ -10,3 +10,17 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c" TransformVariables = "84d833dd-6860-57f9-a1a7-6da5db126cff" Turing = "fce5fe82-541a-59a6-adf8-730c64b5f9a0" + +[compat] +Bijectors = "0.13" +CSV = "0.10" +CategoricalArrays = "0.10" +DataFrames = "1" +LazyArrays = "1" +PDMats = "0.11" +ParetoSmooth = "0.7" +StatsBase = "0.34" +StatsFuns = "1" +TransformVariables = "0.8" +Turing = "0.29" +julia = "1"