Skip to content

Commit

Permalink
Use openlibm everywhere explicitly. (#55)
Browse files Browse the repository at this point in the history
This is in preparation for JuliaLang/julia#42299 where most of the pkgeval failures will be resolved with NaNMath being updated.
  • Loading branch information
ViralBShah authored Jul 13, 2022
1 parent c42ecde commit 6e5f40d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ name = "NaNMath"
uuid = "77ba4419-2d1f-58cd-9bb1-8ffee604a2e3"
repo = "https://github.com/mlubin/NaNMath.jl.git"
authors = ["Miles Lubin"]
version = "1.0.0"
version = "1.0.1"

[deps]
OpenLibm_jll = "05823500-19ac-5b8b-9628-191a04bc5112"

[compat]
julia = "1.6"
Expand Down
3 changes: 2 additions & 1 deletion src/NaNMath.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module NaNMath

const libm = Base.libm_name
using OpenLibm_jll
const libm = OpenLibm_jll.libopenlibm

for f in (:sin, :cos, :tan, :asin, :acos, :acosh, :atanh, :log, :log2, :log10,
:lgamma, :log1p)
Expand Down

2 comments on commit 6e5f40d

@mlubin
Copy link
Collaborator

@mlubin mlubin commented on 6e5f40d Jul 13, 2022

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

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 v1.0.1 -m "<description of version>" 6e5f40d6d453247cd6a3e7908cdc7951f7b855dc
git push origin v1.0.1

Please sign in to comment.