Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use newer JLL with updated upstream source code #102

Merged
merged 2 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: CI

on:
push:
Expand All @@ -19,7 +20,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.3'
- 'min'
- '1'
- 'nightly'
os:
Expand All @@ -35,7 +36,6 @@ jobs:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
depwarn: error
Expand Down
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name = "Dierckx"
uuid = "39dd38d3-220a-591b-8e3c-4c3a8c710a94"
repo = "https://github.com/kbarbary/Dierckx.jl.git"
version = "0.5.3"
version = "0.5.4"

[deps]
Dierckx_jll = "cd4c43a9-7502-52ba-aa6d-59fb2a88580b"

[compat]
Dierckx_jll = "0.0.1, 0.1"
julia = "1.3"
Dierckx_jll = "0.2"
julia = "1.6"

[extras]
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Dierckx.jl

*Julia library for 1-d and 2-d splines*

[![Build Status](https://img.shields.io/travis/kbarbary/Dierckx.jl.svg?style=flat-square&logo=github&label=CI)](https://github.com/kbarbary/Dierckx.jl/actions?query=workflow%3ACI)
[![Coverage Status](http://img.shields.io/coveralls/kbarbary/Dierckx.jl.svg?style=flat-square)](https://coveralls.io/r/kbarbary/Dierckx.jl?branch=master)
[![.github/workflows/ci.yml](https://github.com/JuliaMath/Dierckx.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/JuliaMath/Dierckx.jl/actions/workflows/ci.yml)
[![Coverage Status](http://img.shields.io/coveralls/JuliaMath/Dierckx.jl.svg?style=flat-square)](https://coveralls.io/github/JuliaMath/Dierckx.jl)

This is a Julia wrapper for the
[dierckx](http://www.netlib.org/dierckx/index.html) Fortran library,
Expand All @@ -28,11 +28,11 @@ of Julia.
- Derivatives, integrals and roots of 1-d splines.
- Parametric B-splines.

Install (Julia 1.3 and later)
Install (Julia 1.6 and later)
-----------------------------

```julia
(v1.3) pkg> add Dierckx
(v1.6) pkg> add Dierckx
```

(Type `]` to enter package mode.)
Expand Down Expand Up @@ -309,4 +309,4 @@ If you use this package in a pulication and wish to cite it, you may want to cit

> Paul Dierckx, Curve and Surface Fitting with Splines, Oxford University Press, 1993

If convenient, you can also include a link to the github repository for this package: https://github.com/kbarbary/Dierckx.jl.
If convenient, you can also include a link to the github repository for this package: https://github.com/JuliaMath/Dierckx.jl.
Loading
Loading