Skip to content

Commit

Permalink
Import deps transitively in extension (#96)
Browse files Browse the repository at this point in the history
* Import deps transitively in extension

* compat for LinearAlgebra

* Add comment
  • Loading branch information
jishnub authored Oct 31, 2023
1 parent df7e0c8 commit 027dc6b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ApproxFunSingularities"
uuid = "f8fcb915-6b99-5be2-b79a-d6dbef8e6e7e"
version = "0.3.19"
version = "0.3.20"

[deps]
ApproxFunBase = "fbd15aa5-315a-5a7d-a8a4-24992e37be05"
Expand Down Expand Up @@ -30,6 +30,7 @@ BlockBandedMatrices = "0.11, 0.12"
DomainSets = "0.4, 0.5, 0.6, 0.7"
HalfIntegers = "1.5"
IntervalSets = "0.5, 0.6, 0.7"
LinearAlgebra = "1.6"
OddEvenIntegers = "0.1.8"
Reexport = "0.2, 1"
SpecialFunctions = "1, 2"
Expand Down
8 changes: 5 additions & 3 deletions ext/ApproxFunSingularitiesStaticArraysExt.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
module ApproxFunSingularitiesStaticArraysExt

using ApproxFunSingularities
using ApproxFunBase
import ApproxFunBase: coefficients
using DomainSets
# Specifying the full namespace is necessary because of https://github.com/JuliaLang/julia/issues/48533
# See https://github.com/JuliaStats/LogExpFunctions.jl/pull/63
using ApproxFunSingularities.ApproxFunBase
import ApproxFunSingularities.ApproxFunBase: coefficients
using ApproxFunSingularities.DomainSets
using StaticArrays

function coefficients(f::AbstractVector,
Expand Down

2 comments on commit 027dc6b

@jishnub
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/94479

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.3.20 -m "<description of version>" 027dc6b12ca7600467aa22903dab957f8c00c95a
git push origin v0.3.20

Please sign in to comment.