Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

For a 0.16. 13 release #539

Merged
merged 9 commits into from
Jan 9, 2024
Merged
22 changes: 11 additions & 11 deletions .github/workflows/check_registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
PYTHON: Conda
# remove next line (and others marked below) when
# JuliaAI/MLJScikitLearnInterface.jl#42 properly resolved
LD_LIBRARY_PATH: /home/runner/.julia/conda/3/lib
# LD_LIBRARY_PATH: /home/runner/.julia/conda/3/lib

steps:
- uses: actions/checkout@v2
Expand All @@ -43,16 +43,16 @@ jobs:
- run: julia -e 'using Pkg; Pkg.develop(Pkg.PackageSpec(path = pwd()))'
- run: julia -e 'using Pkg; Pkg.add("Test")'

# remove next eight lines (and one other marked above) when
# JuliaAI/MLJScikitLearnInterface.jl#42 gets properly resolved
- name: "Install Conda"
run: julia -e 'using Pkg; Pkg.add("Conda");'
- name: "Install Scikit-learn"
run: |
julia -e 'using Conda; Conda.add("scikit-learn");'\
cd $LD_LIBRARY_PATH #just to check that the path is valid

- run: julia -e 'using Pkg; Pkg.update()'
# remove next eight lines (and one other marked above) when
# JuliaAI/MLJScikitLearnInterface.jl#42 gets properly resolved
#- name: "Install Conda"
# run: julia -e 'using Pkg; Pkg.add("Conda");'
#- name: "Install Scikit-learn"
# run: |
# julia -e 'using Conda; Conda.add("scikit-learn");'\
# cd $LD_LIBRARY_PATH #just to check that the path is valid
#
- run: julia -e 'using Pkg; Pkg.update()'
- run: julia -e 'using Pkg; Pkg.precompile()'
- run: julia -e 'using Pkg; Pkg.status()'
- run: julia -e 'using MLJModels; using Test; problems = MLJModels.check_registry(); @info("", length(problems), problems); @test(isempty(problems))'
9 changes: 8 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MLJModels"
uuid = "d491faf4-2d78-11e9-2867-c94bc002c0b7"
authors = ["Anthony D. Blaom <[email protected]>"]
version = "0.16.12"
version = "0.16.13"

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand Down Expand Up @@ -31,15 +31,22 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
CategoricalArrays = "0.9, 0.10"
CategoricalDistributions = "0.1"
Combinatorics = "1.0"
Dates = "<0.0.1, 1"
Distances = "0.9,0.10"
Distributions = "0.25"
InteractiveUtils = "<0.0.1, 1"
LinearAlgebra = "<0.0.1, 1"
Markdown = "<0.0.1, 1"
MLJModelInterface = "1.4"
OrderedCollections = "1.1"
Parameters = "0.12"
Pkg = "<0.0.1, 1"
PrettyPrinting = "0.3, 0.4"
Random = "<0.0.1, 1"
RelocatableFolders = "0.3, 1"
ScientificTypes = "3"
StatisticalTraits = "3"
Statistics = "<0.0.1, 1"
StatsBase = "0.32,0.33, 0.34"
Tables = "0.2,1.0"
julia = "1.6"
Expand Down
2 changes: 1 addition & 1 deletion src/builtins/Transformers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ metadata_model(UnivariateTimeTypeToContinuous,
load_path = "MLJModels.UnivariateTimeTypeToContinuous")

metadata_model(InteractionTransformer,
input_scitype = Table,
input_scitype = Tuple{Table},
output_scitype = Table,
human_name = "interaction transformer",
load_path = "MLJModels.InteractionTransformer")
Expand Down
Loading