Skip to content

Commit

Permalink
Merge 4917080 into 3a2b1e4
Browse files Browse the repository at this point in the history
  • Loading branch information
devmotion committed Aug 23, 2020
2 parents 3a2b1e4 + 4917080 commit f259ce8
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 16 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: CompatHelper
on:
schedule:
- cron: '00 00 * * *'
workflow_dispatch:

jobs:
CompatHelper:
Expand All @@ -14,4 +15,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs = ["", "test")'
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/Manifest.toml
/Manifest.toml
/test/Manifest.toml
15 changes: 1 addition & 14 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,11 @@ StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c"
[compat]
ArgCheck = "1, 2"
Compat = "3"
Distributions = "=0.23.3, =0.23.4, =0.23.5, =0.23.6, =0.23.7, =0.23.8"
Distributions = "0.23.3"
MappedArrays = "0.2.2"
NNlib = "0.6, 0.7"
Reexport = "0.2"
Requires = "0.5, 1"
Roots = "0.8.4, 1"
StatsFuns = "0.8, 0.9.3"
julia = "1.3"

[extras]
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
DistributionsAD = "ced4e74d-a319-5a8a-b0ac-84af2272839c"
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c"
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"

[targets]
test = ["ForwardDiff", "Test", "Tracker", "DistributionsAD", "Zygote", "Combinatorics", "ReverseDiff", "FiniteDiff"]
21 changes: 21 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[deps]
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
DistributionsAD = "ced4e74d-a319-5a8a-b0ac-84af2272839c"
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
ReverseDiff = "37e2e3b7-166d-5795-8a7a-e32c996b4267"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c"
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"

[compat]
Combinatorics = "1.0.2"
DistributionsAD = "0.6.3"
FiniteDiff = "2.6"
ForwardDiff = "0.10.12"
ReverseDiff = "1.4.2"
Tracker = "0.2.11"
Zygote = "0.5.4"
julia = "1.3"

0 comments on commit f259ce8

Please sign in to comment.