Skip to content

Commit

Permalink
v 0.8 change to RegressionModel
Browse files Browse the repository at this point in the history
  • Loading branch information
PharmCat committed Jul 23, 2022
1 parent aca22f9 commit 484a0c1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MetidaBase"
uuid = "075456b7-4006-432f-9324-2f8453996c49"
authors = ["PharmCat <[email protected]> and contributors"]
version = "0.7.0"
version = "0.8.0"

[deps]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Expand All @@ -19,7 +19,7 @@ StatsModels = "0.6"
Tables = "1"
PrettyTables = "1"
TypedTables = "1"
CPUSummary = "0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6"
CPUSummary = "0.1"
julia = "1"

[extras]
Expand Down
2 changes: 1 addition & 1 deletion src/MetidaBase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module MetidaBase

#@reexport using StatsModels
import DataFrames, TypedTables
import StatsModels: StatisticalModel
import StatsModels: StatisticalModel, RegressionModel
import Tables: istable, columnaccess, columns, getcolumn, columnnames, schema, rowaccess, rows
import CPUSummary: num_cores

Expand Down
2 changes: 1 addition & 1 deletion src/abstracttype.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Metida.jl

abstract type MetidaModel <: StatisticalModel end
abstract type MetidaModel <: RegressionModel end

abstract type AbstractCovarianceStructure end

Expand Down

2 comments on commit 484a0c1

@PharmCat
Copy link
Owner

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

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.8.0 -m "<description of version>" 484a0c1c5f65c95652f2a5d1245a6e57ee219a8e
git push origin v0.8.0

Please sign in to comment.