Skip to content

Commit

Permalink
feat: bump to flint 3 (#801)
Browse files Browse the repository at this point in the history
  • Loading branch information
thofma committed May 5, 2024
1 parent be15258 commit 91dfa8d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "Singular"
uuid = "bcd08a7b-43d2-5ff7-b6d4-c458787f915c"
version = "0.23.0"
version = "0.23.1"

[deps]
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
Expand All @@ -24,13 +24,13 @@ BinaryWrappers = "~0.1.1"
CxxWrap = "0.14"
Libdl = "1.6"
LinearAlgebra = "1.6"
Nemo = "0.44"
Nemo = "0.45"
Pidfile = "1.3"
Pkg = "1.6"
Random = "1.6"
RandomExtensions = "0.4.2"
Singular_jll = "~403.216.1602"
Singular_jll = "~403.216.1603"
Statistics = "1.6"
julia = "1.6"
lib4ti2_jll = "1.6.10"
libsingular_julia_jll = "=0.44.2"
libsingular_julia_jll = "=0.44.3"
2 changes: 1 addition & 1 deletion src/LibSingular.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module libSingular

using CxxWrap

import ..Singular: libflint, libantic, libsingular_julia, AbstractAlgebra
import ..Singular: libflint, libsingular_julia, AbstractAlgebra

@wrapmodule(libsingular_julia)

Expand Down
1 change: 0 additions & 1 deletion src/Singular.jl
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ const _libsingular_julia = Ref(Setup.locate_libsingular())
libsingular_julia() = _libsingular_julia[]

const libflint = Nemo.libflint
const libantic = Nemo.libantic

const mapping_types_reversed = Dict{Symbol, Int64}()

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

function nf_elemInpNeg(a::Ptr{Cvoid}, cf::Ptr{Cvoid})
cf_ptr = get_coeff_data_void(cf)
ccall((:nf_elem_neg, libantic), Cvoid,
ccall((:nf_elem_neg, libflint), Cvoid,
(Ptr{Nemo.AbsSimpleNumFieldElem}, Ptr{Nemo.AbsSimpleNumFieldElem}, Ptr{Nemo.AbsSimpleNumField}),
a, a, cf_ptr)
return a
Expand Down

2 comments on commit 91dfa8d

@thofma
Copy link
Collaborator Author

@thofma thofma commented on 91dfa8d May 5, 2024

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

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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.23.1 -m "<description of version>" 91dfa8ddf0ba85b735401ee84a62448bcf4d200f
git push origin v0.23.1

Please sign in to comment.