Skip to content

Commit 1e35826

Browse files
committed
Transfer mvndst to a separate JLL package
1 parent 50b7312 commit 1e35826

File tree

10 files changed

+31
-460
lines changed

10 files changed

+31
-460
lines changed

.codecov.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/CI.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
matrix:
10+
julia-version: ['1.6', '1.7']
11+
julia-arch: [x64, x86]
12+
os: [ubuntu-latest, windows-latest, macos-latest]
13+
exclude:
14+
- os: macOS-latest
15+
julia-arch: x86
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- uses: julia-actions/setup-julia@v1
20+
with:
21+
version: ${{ matrix.julia-version }}
22+
arch: ${{ matrix.julia-arch }}
23+
- uses: julia-actions/julia-buildpkg@v1
24+
- uses: julia-actions/julia-runtest@v1

.travis.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

Manifest.toml

Lines changed: 0 additions & 299 deletions
This file was deleted.

Project.toml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name = "CorrectMatch"
22
uuid = "26fcc630-e5d3-11e9-1f2e-33567d4860bc"
3-
version = "1.0.1"
3+
version = "1.0.2"
44

55
[deps]
6-
BinDeps = "9e28174c-4ba2-5203-b857-d8d62c4213ee"
76
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
87
Discreet = "c2843242-4f35-58a6-a2a0-7e7527607317"
98
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
@@ -12,15 +11,13 @@ PDMats = "90014a1f-27ba-587c-ab20-58faa44d9150"
1211
Roots = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
1312
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1413
StatsFuns = "4c63d2b9-4356-54db-8cca-17b64c39e42c"
14+
mvndst_jll = "78cd126e-648e-5a4b-8892-63be0e833cb1"
1515

1616
[compat]
17-
julia = "1"
18-
BinDeps = "0.8"
1917
Compat = "2.2"
2018
Discreet = "0.3"
21-
Distributions = "0.21"
2219
Optim = "0.19"
23-
PDMats = "0.9"
2420
Roots = "0.8"
25-
StatsBase = "0.32"
26-
StatsFuns = "0.8"
21+
StatsBase = "0.32, 0.33"
22+
StatsFuns = "0.8, 0.9, 1.0"
23+
julia = "1"

0 commit comments

Comments
 (0)