Skip to content

Commit 36422b0

Browse files
authored
Merge pull request #17 from JuliaAI/dev
For a 0.1.2 release
2 parents 5318e19 + affd56b commit 36422b0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "MLJText"
22
uuid = "5e27fcf9-6bac-46ba-8580-b5712f3d6387"
33
authors = ["Chris Alexander <[email protected]>, Anthony D. Blaom <[email protected]>"]
4-
version = "0.1.1"
4+
version = "0.1.2"
55

66
[deps]
77
CorpusLoaders = "214a0ac2-f95b-54f7-a80b-442ed9c2c9e8"
@@ -15,8 +15,8 @@ TextAnalysis = "a2db99b7-8b79-58f8-94bf-bbc811eef33d"
1515
[compat]
1616
CorpusLoaders = "0.3"
1717
MLJModelInterface = "1.3"
18-
ScientificTypes = "2.2.2"
19-
ScientificTypesBase = "2.2.0"
18+
ScientificTypes = "2.2.2, 3"
19+
ScientificTypesBase = "2.2.0, 3"
2020
TextAnalysis = "0.7.3"
2121
julia = "1.3"
2222

src/scitypes.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ STB.scitype(::AbstractDict{<:CL.TaggedWord,<:Integer},
2121
STB.scitype(::AbstractDict{<:Union{CL.TaggedWord,AbstractString},<:Integer},
2222
::DefaultConvention) =
2323
Multiset{Union{Textual,Annotated{Textual}}}
24-
STB.scitype(::AbstractDict{<:PlainNGram{N}}) where N =
24+
STB.scitype(::AbstractDict{<:PlainNGram{N}}, ::DefaultConvention) where N =
2525
Multiset{NTuple{N,Textual}}
26-
STB.scitype(::AbstractDict{<:TaggedNGram{N}}) where N =
26+
STB.scitype(::AbstractDict{<:TaggedNGram{N}}, ::DefaultConvention) where N =
2727
Multiset{NTuple{N,Annotated{Textual}}}
28-
STB.scitype(::AbstractDict{<:PlainNGram}) =
28+
STB.scitype(::AbstractDict{<:PlainNGram}, ::DefaultConvention) =
2929
Multiset{NTuple{<:Any,Textual}}
30-
STB.scitype(::AbstractDict{<:TaggedNGram}) =
30+
STB.scitype(::AbstractDict{<:TaggedNGram}, ::DefaultConvention) =
3131
Multiset{NTuple{<:Any,Annotated{Textual}}}
3232

3333
STB.Scitype(::Type{<:CL.TaggedWord}, ::DefaultConvention) =

0 commit comments

Comments
 (0)