Skip to content

Commit

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

* Add comment
  • Loading branch information
jishnub authored Oct 31, 2023
1 parent 9840157 commit a37073c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ApproxFun"
uuid = "28f2ccd6-bb30-5033-b560-165f7b14dc2f"
version = "0.13.24"
version = "0.13.25"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand Down Expand Up @@ -41,6 +41,7 @@ DualNumbers = "0.6.2"
FFTW = "1"
FastTransforms = "0.13, 0.14, 0.15"
IntervalSets = "0.7.5"
LinearAlgebra = "1.6"
RecipesBase = "1.0"
Reexport = "1.0"
SpecialFunctions = "1.1, 2"
Expand Down
10 changes: 6 additions & 4 deletions ext/ApproxFunDualNumbersExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ module ApproxFunDualNumbersExt

using DualNumbers
using ApproxFun
using ApproxFun: TransformPlan, ITransformPlan
import ApproxFunBase: valsdomain_type_promote
using DomainSets
import FastTransforms: ChebyshevTransformPlan, IChebyshevTransformPlan,
# 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 ApproxFun.ApproxFunBase: TransformPlan, ITransformPlan
import ApproxFun.ApproxFunBase: valsdomain_type_promote
using ApproxFun.DomainSets
import ApproxFun.FastTransforms: ChebyshevTransformPlan, IChebyshevTransformPlan,
plan_chebyshevtransform, plan_chebyshevtransform!,
plan_ichebyshevtransform, plan_ichebyshevtransform!

Expand Down

2 comments on commit a37073c

@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/94481

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

Please sign in to comment.