Skip to content

Commit 60d4137

Browse files
Update Project.toml dependencies and fix type references in documentation
- Remove unused Coverage dependency from Project.toml - Loosen version constraints for better compatibility (= x.y.z → x.y)
1 parent 0dd43a5 commit 60d4137

File tree

3 files changed

+33
-31
lines changed

3 files changed

+33
-31
lines changed

Project.toml

Lines changed: 29 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -33,36 +33,38 @@ TranscodingStreams = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
3333
WAV = "8149f6b0-98f6-5db9-b78f-408fbbb8ef88"
3434
WriteVTK = "64499a7a-5c06-52f2-abe2-ccb03c286192"
3535

36+
[compat]
37+
BenchmarkTools = "1"
38+
CSV = "0.10"
39+
CodecBzip2 = "0.8"
40+
CodecLz4 = "0.4"
41+
CodecZlib = "0.7"
42+
DataStructures = "0.18"
43+
Distributions = "0.25"
44+
Downloads = "1"
45+
ElasticArrays = "1.2"
46+
FortranFiles = "0.6"
47+
ImageTransformations = "0.10"
48+
IndexedTables = "1.0"
49+
JLD2 = "0.5"
50+
JSON3 = "1.14"
51+
MacroTools = "0.5"
52+
OnlineStats = "1.7"
53+
ProgressMeter = "1.10"
54+
StatsBase = "0.34"
55+
StructArrays = "0.4"
56+
Tar = "1"
57+
Test = "1"
58+
TimerOutputs = "0.5"
59+
TranscodingStreams = "0.3"
60+
WAV = "1.2"
61+
WriteVTK = "1.21"
62+
julia = "1.10"
63+
3664
[extras]
37-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3865
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
3966
Tar = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e"
67+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
4068

4169
[targets]
4270
test = ["Test", "Downloads", "Tar"]
43-
44-
[compat]
45-
CSV = "= 0.10.15"
46-
CodecBzip2 = "= 0.8.5"
47-
CodecLz4 = "= 0.4.6"
48-
CodecZlib = "= 0.7.8"
49-
DataStructures = "= 0.18.22"
50-
Distributions = "0.25.120"
51-
ElasticArrays = "= 1.2.12"
52-
FortranFiles = "= 0.6.0"
53-
ImageTransformations = "= 0.10.2"
54-
IndexedTables = "= 1.0.1"
55-
JLD2 = "= 0.5.13"
56-
JSON3 = "1.14.3"
57-
MacroTools = "0.5.16"
58-
OnlineStats = "= 1.7.1"
59-
ProgressMeter = "= 1.10.4"
60-
StatsBase = "= 0.34.5"
61-
StructArrays = " = 0.4.4"
62-
TimerOutputs = "= 0.5.29"
63-
WAV = "= 1.2.0"
64-
WriteVTK = "1.21.2"
65-
julia = "1.10"
66-
Test = "1"
67-
Downloads = "1"
68-
Tar = "1"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,14 +238,14 @@ Get a list of the defined methods of a function:
238238
```julia
239239
julia> methods(viewfields)
240240
# 10 methods for generic function "viewfields":
241-
[1] viewfields(object::PhysicalUnitsType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:181
241+
[1] viewfields(object::PhysicalUnitsType002) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:181
242242
[2] viewfields(object::Mera.FilesContentType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:166
243243
[3] viewfields(object::DescriptorType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:150
244244
[4] viewfields(object::FileNamesType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:134
245245
[5] viewfields(object::CompilationInfoType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:116
246246
[6] viewfields(object::GridInfoType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:90
247247
[7] viewfields(object::PartInfoType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:73
248-
[8] viewfields(object::ScalesType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:57
248+
[8] viewfields(object::ScalesType002) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:57
249249
[9] viewfields(object::InfoType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:12
250250
[10] viewfields(object::DataSetType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:197
251251
```

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,14 +199,14 @@ Get a list of the defined methods of a function:
199199
```julia
200200
julia> methods(viewfields)
201201
# 10 methods for generic function "viewfields":
202-
[1] viewfields(object::PhysicalUnitsType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:181
202+
[1] viewfields(object::PhysicalUnitsType002) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:181
203203
[2] viewfields(object::Mera.FilesContentType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:166
204204
[3] viewfields(object::DescriptorType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:150
205205
[4] viewfields(object::FileNamesType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:134
206206
[5] viewfields(object::CompilationInfoType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:116
207207
[6] viewfields(object::GridInfoType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:90
208208
[7] viewfields(object::PartInfoType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:73
209-
[8] viewfields(object::ScalesType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:57
209+
[8] viewfields(object::ScalesType002) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:57
210210
[9] viewfields(object::InfoType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:12
211211
[10] viewfields(object::DataSetType) in Mera at /Users/mabe/Documents/Projects/dev/Mera/src/functions/viewfields.jl:197
212212
```

0 commit comments

Comments
 (0)