Skip to content

Commit 2948216

Browse files
authored
Import deps transitively in extension (#318)
* Import deps transitively in extension * compat for LinearAlgebra * Add comment
1 parent 329b09a commit 2948216

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFunOrthogonalPolynomials"
22
uuid = "b70543e2-c0d9-56b8-a290-0d4d6d4de211"
3-
version = "0.6.49"
3+
version = "0.6.50"
44

55
[deps]
66
ApproxFunBase = "fbd15aa5-315a-5a7d-a8a4-24992e37be05"
@@ -44,6 +44,7 @@ FillArrays = "0.11, 0.12, 0.13, 1"
4444
HalfIntegers = "1.5"
4545
IntervalSets = "0.5, 0.6, 0.7"
4646
LazyArrays = "0.22, 1"
47+
LinearAlgebra = "1.6"
4748
OddEvenIntegers = "0.1.8"
4849
Polynomials = "2, 3, 4"
4950
Reexport = "0.2, 1"

ext/ApproxFunOrthogonalPolynomialsPolynomialsExt.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ module ApproxFunOrthogonalPolynomialsPolynomialsExt
22

33
using ApproxFunOrthogonalPolynomials
44
import Polynomials
5-
import ApproxFunBase: Fun
5+
# Specifying the full namespace is necessary because of https://github.com/JuliaLang/julia/issues/48533
6+
# See https://github.com/JuliaStats/LogExpFunctions.jl/pull/63
7+
import ApproxFunOrthogonalPolynomials.ApproxFunBase: Fun
68

79
Fun(C::Polynomials.ChebyshevT, s::Chebyshev{<:ChebyshevInterval}) =
810
Fun(s, float.(Polynomials.coeffs(C)))

0 commit comments

Comments
 (0)