Skip to content

Commit

Permalink
Export MLJ interface (#40)
Browse files Browse the repository at this point in the history
* Export MLJ interface

* fix test

* formatting

* update CHANGELOG
  • Loading branch information
mtsch authored Jan 23, 2021
1 parent 0be5cca commit 8c5a641
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.9.0

* MLJ integration is now exported by default.

# v0.8.1

* Experimental integration with [MLJ.jl](https://github.com/alan-turing-institute/MLJ.jl).
Expand Down
1 change: 0 additions & 1 deletion test/mlj.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using MLJBase
using PersistenceDiagrams
using PersistenceDiagrams.MLJPersistenceDiagrams
using Suppressor
using Tables
using Test
Expand Down
6 changes: 3 additions & 3 deletions test/plotsrecipes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ end

@testset "ZeroPersistenceLine" begin
@test only(series(ZeroPersistenceLine, ZeroPersistenceLine())).args == (identity,)
@test only(series(
ZeroPersistenceLine, ZeroPersistenceLine(); persistence=true
)).args == ([0],)
@test only(
series(ZeroPersistenceLine, ZeroPersistenceLine(); persistence=true)
).args == ([0],)
end

@testset "Diagram recipe" begin
Expand Down

2 comments on commit 8c5a641

@mtsch
Copy link
Owner Author

@mtsch mtsch commented on 8c5a641 Jan 23, 2021

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/28520

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.9.0 -m "<description of version>" 8c5a64164c322e21ffbc172d0ba52480e2861124
git push origin v0.9.0

Please sign in to comment.