Skip to content

Commit

Permalink
Fix showing of pretty tables on x86 (#16)
Browse files Browse the repository at this point in the history
* Increment patch number

* Replace Int64 with Int
  • Loading branch information
sethaxen authored Aug 20, 2023
1 parent 5e8ae20 commit d4597db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PosteriorStats"
uuid = "7f36be82-ad55-44ba-a5c0-b8b5480d7aa5"
authors = ["Seth Axen <[email protected]> and contributors"]
version = "0.1.2"
version = "0.1.3"

[deps]
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Expand Down
2 changes: 1 addition & 1 deletion src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ function _show_prettytable(
newline_at_end=false,
kwargs...,
)
alignment_anchor_regex = Dict{Int64,Vector{Regex}}(
alignment_anchor_regex = Dict{Int,Vector{Regex}}(
i => [r"\.", r"e", r"^NaN$", r"Inf$"] for (i, (k, v)) in enumerate(pairs(data)) if
(eltype(v) <: Real && !(eltype(v) <: Integer) && !_is_ess_label(k))
)
Expand Down

2 comments on commit d4597db

@sethaxen
Copy link
Member 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/89988

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.1.3 -m "<description of version>" d4597dbf6bb7572b83e9bcbb4bb76ea255d97f4d
git push origin v0.1.3

Please sign in to comment.