Skip to content

Commit

Permalink
remove shows
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Mar 7, 2022
1 parent 6874708 commit d7c3676
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CPUSummary"
uuid = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9"
authors = ["chriselrod <[email protected]> and contributors"]
version = "0.1.13"
version = "0.1.14"

[deps]
Hwloc = "0e44f5e4-bd66-52a0-8798-143a42290a1d"
Expand Down
2 changes: 0 additions & 2 deletions src/CPUSummary.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ use_hwloc(b) = @set_preferences!("hwloc" => b)
try
p = run(`$(Base.julia_cmd()) --project=$tmpd -e'using Pkg; Pkg.add("Hwloc"); using Hwloc; Hwloc.gettopology()'`, wait=false)
wait(p)
@show p
@show p.exitcode == 0 && p.termsignal == 0
if p.exitcode == 0 && p.termsignal == 0
include("topology.jl")
else
Expand Down

2 comments on commit d7c3676

@chriselrod
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/56156

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.14 -m "<description of version>" d7c3676c97739d9b5f06f269ecfdf672978db254
git push origin v0.1.14

Please sign in to comment.