Skip to content

Commit 7245022

Browse files
committed
Update to newer version of TransformVariables.
1 parent 7a0dff2 commit 7245022

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ IntervalSets = "0.6, 0.7 - 0.7.11, ^0.7.13"
8484
LogDensityProblems = "2"
8585
Makie = "0.24"
8686
Measurements = "2"
87-
NamedTupleTools = "0.13,0.14"
87+
NamedTupleTools = "0.13, 0.14"
8888
Optimization = "5"
8989
PaddedViews = "0.5"
9090
ParameterHandling = "0.4, 0.5"
@@ -100,7 +100,7 @@ Statistics = "1.8"
100100
StatsBase = "0.33,0.34"
101101
StructArrays = "0.5,0.6, 0.7"
102102
Tables = "1"
103-
TransformVariables = "0.8 - 0.8.17"
103+
TransformVariables = "^0.8.19"
104104
VLBIImagePriors = "0.10"
105105
VLBILikelihoods = "^0.2.6"
106106
VLBISkyModels = "^0.6.15"

src/instrument/instrument_transforms.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ struct InstrumentTransform{T, L <: SiteLookup} <: AbstractInstrumentTransform
3535
site_map::L
3636
end
3737

38-
function TV.inverse_eltype(::AbstractInstrumentTransform, x)
38+
function TV.inverse_eltype(::AbstractInstrumentTransform, ::Type)
3939
return eltype(x)
4040
end
4141

src/instrument/priors/array_priors.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ function HypercubeTransform._step_inverse!(y::AbstractVector, index, t::Partiall
163163
end
164164

165165

166-
TV.inverse_eltype(t::PartiallyFixedTransform, y) = TV.inverse_eltype(t.transform, y)
166+
TV.inverse_eltype(t::PartiallyFixedTransform, y::Type) = TV.inverse_eltype(t.transform, y)
167167

168168

169169
struct PartiallyConditionedDist{D <: Distributions.ContinuousMultivariateDistribution, I, F} <: Distributions.ContinuousMultivariateDistribution

0 commit comments

Comments
 (0)