Skip to content

Commit

Permalink
Merge pull request #22 from sisl/update-to-yggdrasil
Browse files Browse the repository at this point in the history
add cudd_jll dependencies, bump version, update julia compat
  • Loading branch information
MaximeBouton committed Oct 29, 2022
2 parents 457d217 + 3921e36 commit fee6fb6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 55 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,12 @@ jobs:
fail-fast: false
matrix:
version:
- "1.0" # minimum version
- "1.6" # minimum version
- "1" # Latest Release
os:
- ubuntu-latest
- macos-latest
- windows-latest
arch:
- x64
steps:
Expand Down Expand Up @@ -56,4 +58,4 @@ jobs:
with:
file: ./lcov.info
flags: unittests
name: codecov-umbrella
name: codecov-umbrella
8 changes: 3 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
name = "CUDD"
uuid = "345a2cc7-28d8-58b2-abdf-cff77ea7d7f1"
version = "0.2.2"
version = "0.3.0"

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

[compat]
BinaryProvider = "0.5"
CEnum = "0.4"
julia = "1"
julia = "1.6, 1.8"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
1 change: 0 additions & 1 deletion deps/.gitignore

This file was deleted.

38 changes: 0 additions & 38 deletions deps/build.jl

This file was deleted.

10 changes: 1 addition & 9 deletions src/CUDD.jl
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
module CUDD

# cudd_path = joinpath(dirname(@__FILE__), "..", "deps", "cudd-3.0.0", "cudd", ".libs")
const depfile = joinpath(@__DIR__, "..", "deps", "deps.jl")

if isfile(depfile)
include(depfile)
else
error("CUDD not properly installed. Please run Pkg.build(\"CUDD\")")
end

using CUDD_jll
using CEnum

# Files automatically generated by Clang.jl
Expand Down

2 comments on commit fee6fb6

@MaximeBouton
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/71282

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.0 -m "<description of version>" fee6fb609f267cc1a2a179d440991c6d81481cfa
git push origin v0.3.0

Please sign in to comment.