Skip to content

Commit

Permalink
Bump CRlibm to 1 while keeping the existing compats (#503)
Browse files Browse the repository at this point in the history
- The older versions of CRlibm untars the deps which can't be supported on machines where you don't have root access
- CRlibm fails to build with
```
tar: crlibm-1.0beta4/trigo_fast.c: Cannot change ownership to uid 1000, gid 1000: Invalid argument
tar: crlibm-1.0beta4/trigpi.h: Cannot change ownership to uid 1000, gid 1000: Invalid argument
tar: crlibm-1.0beta4/ChangeLog: Cannot change ownership to uid 1000, gid 1000: Invalid argument
tar: crlibm-1.0beta4/triple-double.h: Cannot change ownership to uid 1000, gid 1000: Invalid argument
tar: crlibm-1.0beta4/log2-td.c: Cannot change ownership to uid 1000, gid 1000: Invalid argument
tar: crlibm-1.0beta4/exp-td-standalone.c: Cannot change ownership to uid 1000, gid 1000: Invalid argument
:
:
```
  • Loading branch information
ven-k committed Jan 21, 2022
1 parent 75f53c0 commit db9202c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Project.toml
@@ -1,7 +1,7 @@
name = "IntervalArithmetic"
uuid = "d1acc4aa-44c8-5952-acd4-ba5d80a2a253"
repo = "https://github.com/JuliaIntervals/IntervalArithmetic.jl.git"
version = "0.20.2"
version = "0.20.3"

[deps]
CRlibm = "96374032-68de-5a5b-8d9e-752f78720389"
Expand All @@ -15,7 +15,7 @@ SetRounding = "3cc68bcd-71a2-5612-b932-767ffbe40ab0"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
CRlibm = "0.7, 0.8"
CRlibm = "0.7, 0.8, 1"
FastRounding = "0.2"
Polynomials = "0.7"
RecipesBase = "1.0"
Expand Down

2 comments on commit db9202c

@lucaferranti
Copy link
Member

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

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

Please sign in to comment.