Skip to content

Commit

Permalink
Bump Lighthouse dependency to v0.12 (#27)
Browse files Browse the repository at this point in the history
* Bump Lighthouse dependency to v0.12

* Bump CairoMakie version
  • Loading branch information
hannahilea committed Jun 29, 2021
1 parent f92a767 commit 52dda6f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.3'
- '1.5'
- '1'
os:
- ubuntu-latest
Expand Down
10 changes: 6 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LighthouseFlux"
uuid = "56a5d6c5-c9a8-4db3-ae3d-7c3fdb50c563"
authors = ["Beacon Biosignals, Inc."]
version = "0.3.1"
version = "0.3.2"

[deps]
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
Expand All @@ -10,15 +10,17 @@ StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"

[compat]
CairoMakie = "0.6.2"
Flux = "0.10.4, 0.11, 0.12"
Lighthouse = "0.11"
Lighthouse = "0.12"
StableRNGs = "1.0"
Zygote = "0.4.13, 0.5, 0.6"
julia = "1.3"
julia = "1.5"

[extras]
CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "Random"]
test = ["Test", "Random", "CairoMakie"]
6 changes: 2 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
using Test, StableRNGs
using LighthouseFlux, Lighthouse, Flux

# Set up plotting backend for Plots.jl (GR)
using Lighthouse.Plots
gr()
GR.inline("png")
using CairoMakie
CairoMakie.activate!(type="png")

mutable struct TestModel
chain::Chain
Expand Down

2 comments on commit 52dda6f

@hannahilea
Copy link
Contributor 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/39903

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.2 -m "<description of version>" 52dda6f2b3d1bf0c61bb6c95f88131aeb06a1a1a
git push origin v0.3.2

Please sign in to comment.