Skip to content

Commit fee6fb6

Browse files
authored
Merge pull request #22 from sisl/update-to-yggdrasil
add cudd_jll dependencies, bump version, update julia compat
2 parents 457d217 + 3921e36 commit fee6fb6

File tree

5 files changed

+8
-55
lines changed

5 files changed

+8
-55
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
version:
20-
- "1.0" # minimum version
20+
- "1.6" # minimum version
2121
- "1" # Latest Release
2222
os:
2323
- ubuntu-latest
24+
- macos-latest
25+
- windows-latest
2426
arch:
2527
- x64
2628
steps:
@@ -56,4 +58,4 @@ jobs:
5658
with:
5759
file: ./lcov.info
5860
flags: unittests
59-
name: codecov-umbrella
61+
name: codecov-umbrella

Project.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
name = "CUDD"
22
uuid = "345a2cc7-28d8-58b2-abdf-cff77ea7d7f1"
3-
version = "0.2.2"
3+
version = "0.3.0"
44

55
[deps]
6-
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
76
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
8-
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
7+
CUDD_jll = "81065c4a-a3f9-5a95-915d-40e4a6065040"
98

109
[compat]
11-
BinaryProvider = "0.5"
1210
CEnum = "0.4"
13-
julia = "1"
11+
julia = "1.6, 1.8"
1412

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

deps/.gitignore

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

deps/build.jl

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

src/CUDD.jl

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,6 @@
11
module CUDD
22

3-
# cudd_path = joinpath(dirname(@__FILE__), "..", "deps", "cudd-3.0.0", "cudd", ".libs")
4-
const depfile = joinpath(@__DIR__, "..", "deps", "deps.jl")
5-
6-
if isfile(depfile)
7-
include(depfile)
8-
else
9-
error("CUDD not properly installed. Please run Pkg.build(\"CUDD\")")
10-
end
11-
3+
using CUDD_jll
124
using CEnum
135

146
# Files automatically generated by Clang.jl

0 commit comments

Comments
 (0)