-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-0669b64613.log
979 lines (968 loc) · 46.1 KB
/
1.6.0-DEV-0669b64613.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
Julia Version 1.6.0-DEV.1153
Commit 0669b64613 (2020-10-07 09:01 UTC)
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: AMD EPYC 7502 32-Core Processor
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-10.0.1 (ORCJIT, znver2)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed IntelOpenMP_jll ────────────── v2018.0.3+0
Installed Opus_jll ───────────────────── v1.3.1+2
Installed FFTViews ───────────────────── v0.3.1
Installed MKL_jll ────────────────────── v2020.2.254+0
Installed ImageIO ────────────────────── v0.3.0
Installed Observables ────────────────── v0.3.2
Installed MakieGallery ───────────────── v0.2.17
Installed Distributions ──────────────── v0.23.12
Installed SortingAlgorithms ──────────── v0.3.1
Installed Rotations ──────────────────── v1.0.1
Installed FriBidi_jll ────────────────── v1.0.5+5
Installed Ogg_jll ────────────────────── v1.3.4+1
Installed Showoff ────────────────────── v0.3.2
Installed Tables ─────────────────────── v1.1.0
Installed FixedPointNumbers ──────────── v0.8.4
Installed x265_jll ───────────────────── v3.0.0+2
Installed Zlib_jll ───────────────────── v1.2.11+16
Installed ImageFiltering ─────────────── v0.6.15
Installed Compat ─────────────────────── v3.18.0
Installed StructArrays ───────────────── v0.4.4
Installed DataAPI ────────────────────── v1.3.0
Installed NaNMath ────────────────────── v0.3.4
Installed Documenter ─────────────────── v0.25.2
Installed PDMats ─────────────────────── v0.10.1
Installed OpenSpecFun_jll ────────────── v0.5.3+3
Installed GeometryBasics ─────────────── v0.3.3
Installed EllipsisNotation ───────────── v0.4.0
Installed libpng_jll ─────────────────── v1.6.37+5
Installed FreeType2_jll ──────────────── v2.10.1+4
Installed Interpolations ─────────────── v0.12.10
Installed FreeType ───────────────────── v3.0.1
Installed FFMPEG_jll ─────────────────── v4.3.1+2
Installed ComputationalResources ─────── v0.3.2
Installed Graphics ───────────────────── v1.0.2
Installed IntervalSets ───────────────── v0.5.1
Installed IndirectArrays ─────────────── v0.5.1
Installed StatsBase ──────────────────── v0.33.1
Installed ColorBrewer ────────────────── v0.4.0
Installed PaddedViews ────────────────── v0.5.5
Installed IteratorInterfaceExtensions ── v1.0.0
Installed UnicodeFun ─────────────────── v0.4.1
Installed SignedDistanceFields ───────── v0.4.0
Installed MacroTools ─────────────────── v0.5.5
Installed Colors ─────────────────────── v0.12.4
Installed MosaicViews ────────────────── v0.2.3
Installed ImageMetadata ──────────────── v0.9.3
Installed ColorTypes ─────────────────── v0.10.9
Installed CustomUnitRanges ───────────── v1.0.0
Installed LAME_jll ───────────────────── v3.100.0+2
Installed Animations ─────────────────── v0.4.1
Installed Reexport ───────────────────── v0.2.0
Installed CatIndices ─────────────────── v0.2.1
Installed DataStructures ─────────────── v0.18.7
Installed IterTools ──────────────────── v1.3.0
Installed FreeTypeAbstraction ────────── v0.8.1
Installed FillArrays ─────────────────── v0.9.6
Installed LibVPX_jll ─────────────────── v1.9.0+0
Installed SimpleTraits ───────────────── v0.9.3
Installed FFTW_jll ───────────────────── v3.3.9+5
Installed OrderedCollections ─────────── v1.3.1
Installed FileIO ─────────────────────── v1.4.3
Installed Missings ───────────────────── v0.4.4
Installed Formatting ─────────────────── v0.4.1
Installed libvorbis_jll ──────────────── v1.3.6+5
Installed EarCut_jll ─────────────────── v2.1.5+0
Installed Grisu ──────────────────────── v1.0.0
Installed WoodburyMatrices ───────────── v0.5.2
Installed x264_jll ───────────────────── v2020.7.14+1
Installed Contour ────────────────────── v0.5.5
Installed GridLayoutBase ─────────────── v0.3.7
Installed MeshIO ─────────────────────── v0.4.2
Installed BinaryProvider ─────────────── v0.5.10
Installed CoordinateTransformations ──── v0.6.0
Installed Rmath ──────────────────────── v0.6.1
Installed Match ──────────────────────── v1.1.0
Installed QuadGK ─────────────────────── v2.4.1
Installed RangeArrays ────────────────── v0.3.2
Installed SpecialFunctions ───────────── v0.10.3
Installed CompilerSupportLibraries_jll ─ v0.3.3+0
Installed ColorVectorSpace ───────────── v0.8.6
Installed StaticArrays ───────────────── v0.12.4
Installed FFMPEG ─────────────────────── v0.4.0
Installed Parsers ────────────────────── v1.0.11
Installed Highlights ─────────────────── v0.4.5
Installed AxisAlgorithms ─────────────── v1.0.0
Installed Adapt ──────────────────────── v2.3.0
Installed JSON ───────────────────────── v0.21.1
Installed Rmath_jll ──────────────────── v0.2.2+1
Installed ImageTransformations ───────── v0.8.6
Installed PlotUtils ──────────────────── v1.0.7
Installed OffsetArrays ───────────────── v1.3.0
Installed ImageCore ──────────────────── v0.8.16
Installed FFTW ───────────────────────── v1.2.4
Installed KernelDensity ──────────────── v0.6.0
Installed libfdk_aac_jll ─────────────── v0.1.6+3
Installed DataValueInterfaces ────────── v1.0.0
Installed TiledIteration ─────────────── v0.2.4
Installed Packing ────────────────────── v0.4.1
Installed TableTraits ────────────────── v1.0.0
Installed OpenSSL_jll ────────────────── v1.1.1+5
Installed Requires ───────────────────── v1.1.0
Installed AbstractFFTs ───────────────── v0.5.0
Installed AxisArrays ─────────────────── v0.4.3
Installed StatsFuns ──────────────────── v0.9.5
Installed MappedArrays ───────────────── v0.2.2
Installed Bzip2_jll ──────────────────── v1.0.6+4
Installed DocStringExtensions ────────── v0.8.3
Installed IdentityRanges ─────────────── v0.3.1
Installed CEnum ──────────────────────── v0.4.1
Installed SyntaxTree ─────────────────── v1.0.1
Installed PNGFiles ───────────────────── v0.3.1
Installed StableRNGs ─────────────────── v0.1.2
Installed ImageAxes ──────────────────── v0.6.6
Installed ZipFile ────────────────────── v0.9.2
Installed libass_jll ─────────────────── v0.14.0+3
Installed Ratios ─────────────────────── v0.4.0
Installed ColorSchemes ───────────────── v3.10.1
Installed AbstractPlotting ───────────── v0.12.14
Updating `~/.julia/environments/v1.6/Project.toml`
[dbd62bd0] + MakieGallery v0.2.17
Updating `~/.julia/environments/v1.6/Manifest.toml`
[621f4979] + AbstractFFTs v0.5.0
[537997a7] + AbstractPlotting v0.12.14
[79e6a3ab] + Adapt v2.3.0
[27a7e980] + Animations v0.4.1
[13072b0f] + AxisAlgorithms v1.0.0
[39de3d68] + AxisArrays v0.4.3
[b99e7846] + BinaryProvider v0.5.10
[6e34b625] + Bzip2_jll v1.0.6+4
[fa961155] + CEnum v0.4.1
[aafaddc9] + CatIndices v0.2.1
[a2cac450] + ColorBrewer v0.4.0
[35d6a980] + ColorSchemes v3.10.1
[3da002f7] + ColorTypes v0.10.9
[c3611d14] + ColorVectorSpace v0.8.6
[5ae59095] + Colors v0.12.4
[34da2185] + Compat v3.18.0
[e66e0078] + CompilerSupportLibraries_jll v0.3.3+0
[ed09eef8] + ComputationalResources v0.3.2
[d38c429a] + Contour v0.5.5
[150eb455] + CoordinateTransformations v0.6.0
[dc8bdbbb] + CustomUnitRanges v1.0.0
[9a962f9c] + DataAPI v1.3.0
[864edb3b] + DataStructures v0.18.7
[e2d170a0] + DataValueInterfaces v1.0.0
[31c24e10] + Distributions v0.23.12
[ffbed154] + DocStringExtensions v0.8.3
[e30172f5] + Documenter v0.25.2
[5ae413db] + EarCut_jll v2.1.5+0
[da5c29d0] + EllipsisNotation v0.4.0
[c87230d0] + FFMPEG v0.4.0
[b22a6f82] + FFMPEG_jll v4.3.1+2
[4f61f5a4] + FFTViews v0.3.1
[7a1cc6ca] + FFTW v1.2.4
[f5851436] + FFTW_jll v3.3.9+5
[5789e2e9] + FileIO v1.4.3
[1a297f60] + FillArrays v0.9.6
[53c48c17] + FixedPointNumbers v0.8.4
[59287772] + Formatting v0.4.1
[b38be410] + FreeType v3.0.1
[d7e528f0] + FreeType2_jll v2.10.1+4
[663a7486] + FreeTypeAbstraction v0.8.1
[559328eb] + FriBidi_jll v1.0.5+5
[5c1252a2] + GeometryBasics v0.3.3
[a2bd30eb] + Graphics v1.0.2
[3955a311] + GridLayoutBase v0.3.7
[42e2da0e] + Grisu v1.0.0
[eafb193a] + Highlights v0.4.5
[bbac6d45] + IdentityRanges v0.3.1
[2803e5a7] + ImageAxes v0.6.6
[a09fc81d] + ImageCore v0.8.16
[6a3955dd] + ImageFiltering v0.6.15
[82e4d734] + ImageIO v0.3.0
[bc367c6b] + ImageMetadata v0.9.3
[02fcd773] + ImageTransformations v0.8.6
[9b13fd28] + IndirectArrays v0.5.1
[1d5cc7b8] + IntelOpenMP_jll v2018.0.3+0
[a98d9a8b] + Interpolations v0.12.10
[8197267c] + IntervalSets v0.5.1
[c8e1da08] + IterTools v1.3.0
[82899510] + IteratorInterfaceExtensions v1.0.0
[682c06a0] + JSON v0.21.1
[5ab0869b] + KernelDensity v0.6.0
[c1c5ebd0] + LAME_jll v3.100.0+2
[dd192d2f] + LibVPX_jll v1.9.0+0
[856f044c] + MKL_jll v2020.2.254+0
[1914dd2f] + MacroTools v0.5.5
[dbd62bd0] + MakieGallery v0.2.17
[dbb5928d] + MappedArrays v0.2.2
[7eb4fadd] + Match v1.1.0
[7269a6da] + MeshIO v0.4.2
[e1d29d7a] + Missings v0.4.4
[e94cdb99] + MosaicViews v0.2.3
[77ba4419] + NaNMath v0.3.4
[510215fc] + Observables v0.3.2
[6fe1bfb0] + OffsetArrays v1.3.0
[e7412a2a] + Ogg_jll v1.3.4+1
[458c3c95] + OpenSSL_jll v1.1.1+5
[efe28fd5] + OpenSpecFun_jll v0.5.3+3
[91d4177d] + Opus_jll v1.3.1+2
[bac558e1] + OrderedCollections v1.3.1
[90014a1f] + PDMats v0.10.1
[f57f5aa1] + PNGFiles v0.3.1
[19eb6ba3] + Packing v0.4.1
[5432bcbf] + PaddedViews v0.5.5
[69de0a69] + Parsers v1.0.11
[995b91a9] + PlotUtils v1.0.7
[1fd47b50] + QuadGK v2.4.1
[b3c3ace0] + RangeArrays v0.3.2
[c84ed2f1] + Ratios v0.4.0
[189a3867] + Reexport v0.2.0
[ae029012] + Requires v1.1.0
[79098fc4] + Rmath v0.6.1
[f50d1b31] + Rmath_jll v0.2.2+1
[6038ab10] + Rotations v1.0.1
[992d4aef] + Showoff v0.3.2
[73760f76] + SignedDistanceFields v0.4.0
[699a6c99] + SimpleTraits v0.9.3
[a2af1166] + SortingAlgorithms v0.3.1
[276daf66] + SpecialFunctions v0.10.3
[860ef19b] + StableRNGs v0.1.2
[90137ffa] + StaticArrays v0.12.4
[2913bbd2] + StatsBase v0.33.1
[4c63d2b9] + StatsFuns v0.9.5
[09ab397b] + StructArrays v0.4.4
[a4af3ec5] + SyntaxTree v1.0.1
[3783bdb8] + TableTraits v1.0.0
[bd369af6] + Tables v1.1.0
[06e1c1a7] + TiledIteration v0.2.4
[1cfade01] + UnicodeFun v0.4.1
[efce3f68] + WoodburyMatrices v0.5.2
[a5390f91] + ZipFile v0.9.2
[83775a58] + Zlib_jll v1.2.11+16
[0ac62f75] + libass_jll v0.14.0+3
[f638f0a6] + libfdk_aac_jll v0.1.6+3
[b53b4c65] + libpng_jll v1.6.37+5
[f27f6e37] + libvorbis_jll v1.3.6+5
[1270edf5] + x264_jll v2020.7.14+1
[dfaa095f] + x265_jll v3.0.0+2
[56f22d72] + Artifacts
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8bb1440f] + DelimitedFiles
[8ba89e20] + Distributed
[b77e0a4c] + InteractiveUtils
[76f85450] + LibGit2
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[1a1011a3] + SharedArrays
[6462fe0b] + Sockets
[2f01184e] + SparseArrays
[10745b16] + Statistics
[4607b0f0] + SuiteSparse
[fa267f1f] + TOML
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building FFTW → `~/.julia/scratchspaces/44cfe95a-1eb2-52ea-b672-e2afdf69b78f/8b7c16b56936047ca41bf25effa137ae0b381ae8/build.log`
Testing MakieGallery
Status `/tmp/jl_vKGz1Z/Project.toml`
[537997a7] AbstractPlotting v0.12.14
[27a7e980] Animations v0.4.1
[b99e7846] BinaryProvider v0.5.10
[35d6a980] ColorSchemes v3.10.1
[3da002f7] ColorTypes v0.10.9
[c3611d14] ColorVectorSpace v0.8.6
[5ae59095] Colors v0.12.4
[a93c6f00] DataFrames v0.21.7
[31c24e10] Distributions v0.23.12
[e30172f5] Documenter v0.25.2
[c87230d0] FFMPEG v0.4.0
[7a1cc6ca] FFTW v1.2.4
[5789e2e9] FileIO v1.4.3
[53c48c17] FixedPointNumbers v0.8.4
[add2ef01] GDAL v1.1.4
[f7f18e0c] GLFW v3.4.0
[e9467ef8] GLMakie v0.1.11
[5c1252a2] GeometryBasics v0.3.3
[eafb193a] Highlights v0.4.5
[a09fc81d] ImageCore v0.8.16
[6a3955dd] ImageFiltering v0.6.15
[82e4d734] ImageIO v0.3.0
[02fcd773] ImageTransformations v0.8.6
[5ab0869b] KernelDensity v0.6.0
[dbd62bd0] MakieGallery v0.2.17
[7269a6da] MeshIO v0.4.2
[66fc600b] ModernGL v1.1.2
[510215fc] Observables v0.3.2
[1dea7af3] OrdinaryDiffEq v5.43.0
[65888b18] ParameterizedFunctions v5.6.0
[995b91a9] PlotUtils v1.0.7
[ce6b1742] RDatasets v0.6.10
[860ef19b] StableRNGs v0.1.2
[90137ffa] StaticArrays v0.12.4
[a4af3ec5] SyntaxTree v1.0.1
[a5390f91] ZipFile v0.9.2
[2a0f44e3] Base64
[37e2e46d] LinearAlgebra
[d6f4376e] Markdown
[44cfe95a] Pkg
[9a3f8284] Random
[2f01184e] SparseArrays
[10745b16] Statistics
[8dfed614] Test
Status `/tmp/jl_vKGz1Z/Manifest.toml`
[c3fe647b] AbstractAlgebra v0.10.0
[621f4979] AbstractFFTs v0.5.0
[537997a7] AbstractPlotting v0.12.14
[79e6a3ab] Adapt v2.3.0
[27a7e980] Animations v0.4.1
[ec485272] ArnoldiMethod v0.0.4
[4fba245c] ArrayInterface v2.13.3
[13072b0f] AxisAlgorithms v1.0.0
[39de3d68] AxisArrays v0.4.3
[b99e7846] BinaryProvider v0.5.10
[6e34b625] Bzip2_jll v1.0.6+4
[fa961155] CEnum v0.4.1
[336ed68f] CSV v0.7.7
[a603d957] CanonicalTraits v0.2.2
[aafaddc9] CatIndices v0.2.1
[324d7699] CategoricalArrays v0.8.3
[d360d2e6] ChainRulesCore v0.9.13
[944b1d66] CodecZlib v0.7.0
[a2cac450] ColorBrewer v0.4.0
[35d6a980] ColorSchemes v3.10.1
[3da002f7] ColorTypes v0.10.9
[c3611d14] ColorVectorSpace v0.8.6
[5ae59095] Colors v0.12.4
[861a8166] Combinatorics v1.0.2
[bbf7d656] CommonSubexpressions v0.3.0
[34da2185] Compat v3.18.0
[e66e0078] CompilerSupportLibraries_jll v0.3.3+0
[ed09eef8] ComputationalResources v0.3.2
[187b0558] ConstructionBase v1.0.0
[d38c429a] Contour v0.5.5
[150eb455] CoordinateTransformations v0.6.0
[adafc99b] CpuId v0.2.2
[dc8bdbbb] CustomUnitRanges v1.0.0
[9a962f9c] DataAPI v1.3.0
[a93c6f00] DataFrames v0.21.7
[864edb3b] DataStructures v0.18.7
[e2d170a0] DataValueInterfaces v1.0.0
[2b5f629d] DiffEqBase v6.48.0
[c894b116] DiffEqJump v6.10.1
[163ba53b] DiffResults v1.0.2
[b552c78f] DiffRules v1.0.1
[b4f34e82] Distances v0.9.2
[31c24e10] Distributions v0.23.12
[ffbed154] DocStringExtensions v0.8.3
[e30172f5] Documenter v0.25.2
[5ae413db] EarCut_jll v2.1.5+0
[da5c29d0] EllipsisNotation v0.4.0
[d4d017d3] ExponentialUtilities v1.8.0
[e2ba6199] ExprTools v0.1.2
[8f5d6c58] EzXML v1.1.0
[c87230d0] FFMPEG v0.4.0
[b22a6f82] FFMPEG_jll v4.3.1+2
[4f61f5a4] FFTViews v0.3.1
[7a1cc6ca] FFTW v1.2.4
[f5851436] FFTW_jll v3.3.9+5
[9aa1b823] FastClosures v0.3.2
[5789e2e9] FileIO v1.4.3
[1a297f60] FillArrays v0.9.6
[6a86dc24] FiniteDiff v2.7.0
[53c48c17] FixedPointNumbers v0.8.4
[59287772] Formatting v0.4.1
[f6369f11] ForwardDiff v0.10.12
[b38be410] FreeType v3.0.1
[d7e528f0] FreeType2_jll v2.10.1+4
[663a7486] FreeTypeAbstraction v0.8.1
[559328eb] FriBidi_jll v1.0.5+5
[069b7b12] FunctionWrappers v1.1.1
[add2ef01] GDAL v1.1.4
[a7073274] GDAL_jll v3.0.4+2
[d604d12d] GEOS_jll v3.8.1+0
[f7f18e0c] GLFW v3.4.0
[0656b61e] GLFW_jll v3.3.2+1
[e9467ef8] GLMakie v0.1.11
[6b9d7cbe] GeneralizedGenerated v0.2.7
[01680d73] GenericSVD v0.3.0
[5c1252a2] GeometryBasics v0.3.3
[a2bd30eb] Graphics v1.0.2
[3955a311] GridLayoutBase v0.3.7
[42e2da0e] Grisu v1.0.0
[eafb193a] Highlights v0.4.5
[bbac6d45] IdentityRanges v0.3.1
[615f187c] IfElse v0.1.0
[2803e5a7] ImageAxes v0.6.6
[a09fc81d] ImageCore v0.8.16
[6a3955dd] ImageFiltering v0.6.15
[82e4d734] ImageIO v0.3.0
[bc367c6b] ImageMetadata v0.9.3
[02fcd773] ImageTransformations v0.8.6
[9b13fd28] IndirectArrays v0.5.1
[d25df0c9] Inflate v0.1.2
[1d5cc7b8] IntelOpenMP_jll v2018.0.3+0
[a98d9a8b] Interpolations v0.12.10
[8197267c] IntervalSets v0.5.1
[41ab1584] InvertedIndices v1.0.0
[c8e1da08] IterTools v1.3.0
[42fd0dbc] IterativeSolvers v0.8.4
[82899510] IteratorInterfaceExtensions v1.0.0
[692b3bcd] JLLWrappers v1.1.0
[682c06a0] JSON v0.21.1
[aacddb02] JpegTurbo_jll v2.0.1+2
[b14d175d] JuliaVariables v0.2.3
[5ab0869b] KernelDensity v0.6.0
[c1c5ebd0] LAME_jll v3.100.0+2
[b964fa9f] LaTeXStrings v1.2.0
[2ee39098] LabelledArrays v1.3.0
[23fbe1c1] Latexify v0.14.0
[dd192d2f] LibVPX_jll v1.9.0+0
[d4300ac3] Libgcrypt_jll v1.8.5+3
[7e76a0d4] Libglvnd_jll v1.3.0+2
[7add5ba3] Libgpg_error_jll v1.36.0+2
[94ce4f54] Libiconv_jll v1.16.0+6
[89763e89] Libtiff_jll v4.1.0+1
[093fc24a] LightGraphs v1.3.0
[d3d80556] LineSearches v7.1.0
[d3a379c0] LittleCMS_jll v2.9.0+0
[bdcacae8] LoopVectorization v0.8.26
[856f044c] MKL_jll v2020.2.254+0
[d8e11817] MLStyle v0.4.6
[1914dd2f] MacroTools v0.5.5
[dbd62bd0] MakieGallery v0.2.17
[dbb5928d] MappedArrays v0.2.2
[7eb4fadd] Match v1.1.0
[7269a6da] MeshIO v0.4.2
[e1d29d7a] Missings v0.4.4
[78c3b35d] Mocking v0.7.1
[961ee093] ModelingToolkit v3.20.1
[66fc600b] ModernGL v1.1.2
[e94cdb99] MosaicViews v0.2.3
[46d2c3a1] MuladdMacro v0.2.2
[d41bc354] NLSolversBase v7.7.1
[2774e3e8] NLsolve v4.4.1
[77ba4419] NaNMath v0.3.4
[71a1bf82] NameResolution v0.1.5
[510215fc] Observables v0.3.2
[6fe1bfb0] OffsetArrays v1.3.0
[e7412a2a] Ogg_jll v1.3.4+1
[643b3616] OpenJpeg_jll v2.3.1+0
[458c3c95] OpenSSL_jll v1.1.1+5
[efe28fd5] OpenSpecFun_jll v0.5.3+3
[91d4177d] Opus_jll v1.3.1+2
[bac558e1] OrderedCollections v1.3.1
[1dea7af3] OrdinaryDiffEq v5.43.0
[90014a1f] PDMats v0.10.1
[f57f5aa1] PNGFiles v0.3.1
[58948b4f] PROJ_jll v7.0.1+0
[19eb6ba3] Packing v0.4.1
[5432bcbf] PaddedViews v0.5.5
[65888b18] ParameterizedFunctions v5.6.0
[d96e819e] Parameters v0.12.1
[69de0a69] Parsers v1.0.11
[995b91a9] PlotUtils v1.0.7
[e409e4f3] PoissonRandom v0.4.0
[2dfb63ee] PooledArrays v0.5.3
[8162dcfd] PrettyPrint v0.2.0
[1fd47b50] QuadGK v2.4.1
[df47a6cb] RData v0.7.2
[ce6b1742] RDatasets v0.6.10
[e6cf234a] RandomNumbers v1.4.0
[b3c3ace0] RangeArrays v0.3.2
[c84ed2f1] Ratios v0.4.0
[3cdcf5f2] RecipesBase v1.1.0
[731186ca] RecursiveArrayTools v2.7.1
[f2c3362d] RecursiveFactorization v0.1.4
[189a3867] Reexport v0.2.0
[ae029012] Requires v1.1.0
[79098fc4] Rmath v0.6.1
[f50d1b31] Rmath_jll v0.2.2+1
[f2b01f46] Roots v1.0.5
[6038ab10] Rotations v1.0.1
[21efa798] SIMDPirates v0.8.25
[476501e8] SLEEFPirates v0.5.5
[76ed43ae] SQLite_jll v3.32.3+0
[1bc83da4] SafeTestsets v0.0.1
[91c51154] SentinelArrays v1.2.16
[65257c39] ShaderAbstractions v0.2.3
[992d4aef] Showoff v0.3.2
[73760f76] SignedDistanceFields v0.4.0
[699a6c99] SimpleTraits v0.9.3
[a2af1166] SortingAlgorithms v0.3.1
[47a9eef4] SparseDiffTools v1.10.0
[276daf66] SpecialFunctions v0.10.3
[860ef19b] StableRNGs v0.1.2
[90137ffa] StaticArrays v0.12.4
[2913bbd2] StatsBase v0.33.1
[4c63d2b9] StatsFuns v0.9.5
[09ab397b] StructArrays v0.4.4
[856f2bd8] StructTypes v1.1.0
[d1185830] SymbolicUtils v0.5.1
[a4af3ec5] SyntaxTree v1.0.1
[3783bdb8] TableTraits v1.0.0
[bd369af6] Tables v1.1.0
[06e1c1a7] TiledIteration v0.2.4
[f269a46b] TimeZones v1.4.0
[a759f4b9] TimerOutputs v0.5.6
[3bb67fe8] TranscodingStreams v0.9.5
[a2a6695c] TreeViews v0.3.0
[3a884ed6] UnPack v1.0.2
[1cfade01] UnicodeFun v0.4.1
[1986cc42] Unitful v1.4.1
[3d5dd08c] VectorizationBase v0.12.33
[19fa3120] VertexSafeGraphs v0.1.2
[efce3f68] WoodburyMatrices v0.5.2
[02c8fc9c] XML2_jll v2.9.10+2
[aed1982a] XSLT_jll v1.1.33+3
[4f6342f7] Xorg_libX11_jll v1.6.9+3
[0c0b7dd1] Xorg_libXau_jll v1.0.9+3
[935fb764] Xorg_libXcursor_jll v1.2.0+3
[a3789734] Xorg_libXdmcp_jll v1.1.3+3
[1082639a] Xorg_libXext_jll v1.3.4+3
[d091e8ba] Xorg_libXfixes_jll v5.0.3+3
[a51aa0fd] Xorg_libXi_jll v1.7.10+3
[d1454406] Xorg_libXinerama_jll v1.1.4+3
[ec84b674] Xorg_libXrandr_jll v1.5.2+3
[ea2f1a96] Xorg_libXrender_jll v0.9.10+3
[14d82f49] Xorg_libpthread_stubs_jll v0.1.0+2
[c7cfdc94] Xorg_libxcb_jll v1.13.0+2
[c5fb5394] Xorg_xtrans_jll v1.4.0+2
[a5390f91] ZipFile v0.9.2
[83775a58] Zlib_jll v1.2.11+16
[3161d3a3] Zstd_jll v1.4.5+1
[700de1a5] ZygoteRules v0.2.0
[0ac62f75] libass_jll v0.14.0+3
[f638f0a6] libfdk_aac_jll v0.1.6+3
[b53b4c65] libpng_jll v1.6.37+5
[f27f6e37] libvorbis_jll v1.3.6+5
[1270edf5] x264_jll v2020.7.14+1
[dfaa095f] x265_jll v3.0.0+2
[56f22d72] Artifacts
[2a0f44e3] Base64
[ade2ca70] Dates
[8bb1440f] DelimitedFiles
[8ba89e20] Distributed
[9fa8497b] Future
[b77e0a4c] InteractiveUtils
[deac9b47] LibCURL_jll
[76f85450] LibGit2
[8f399da3] Libdl
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[d6f4376e] Markdown
[a63ad114] Mmap
[14a3606d] MozillaCACerts_jll
[44cfe95a] Pkg
[de0858da] Printf
[3fa0cd96] REPL
[9a3f8284] Random
[ea8e919c] SHA
[9e88b42a] Serialization
[1a1011a3] SharedArrays
[6462fe0b] Sockets
[2f01184e] SparseArrays
[10745b16] Statistics
[4607b0f0] SuiteSparse
[fa267f1f] TOML
[8dfed614] Test
[cf7118a7] UUIDs
[4ec0a83e] Unicode
Testing Running tests...
[ Info: starting from index 1
Running tutorial_simple_scatter
[ Info: Makie/AbstractPlotting is caching fonts, this may take a while. Needed only on first run!
Running tutorial_markersize
Running tutorial_simple_line
Running tutorial_adding_to_a_scene
Running tutorial_removing_from_a_scene
Running tutorial_adjusting_scene_limits
Running tutorial_basic_theming
Running tutorial_heatmap
Running tutorial_linesegments
Running tutorial_barplot
Running tutorial_title
Running tutorial_title_function
Running tutorial_plot_transformation
Running algorithm
Running align
Running color_1
Running colormap_1
Running colorrange
Running fillrange
Running font
Running glowcolor,_glowwidth
Running image_1
Running interpolate
Running isorange,_isovalue
Running levels
Running linestyle
Running linewidth
Running markersize
Running position_1
Running rotation_1
Running shading
Running strokecolor,_strokewidth
Running strokecolor,_strokewidth_1
Running textsize
Running visible
Running simple_line_plot
Running multiple_functions
Running animations
Running parametric_plots
Running colors
┌ Warning: Founds 0 width in scene limits: Float32[1.0, 1.0, 0.0] .. Float32[50.0, 1.0, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:538
Running attributes_1
Running build_plot_in_pieces
Running barplot_1
Running subplots
Running text_1
Running contours
Running 3d
Running heatmap_1
Running label_rotation,_title_location
Running lines_with_varying_colors
Running test_heatmap___image_overlap
Running barplot_2
Running poly_and_colormap
Running quiver_1
Running arrows_on_hemisphere
Running image_2
Running scatter_colormap
Running fem_polygon_2d
Running fem_mesh_2d
Running colored_triangle
Running heatmap_interpolation
Running colored_triangle_1
Running subscenes
Running scale_plot
Running polygons
Running contour_function
Running hbox_1
Running customize_axes
┌ Warning: Error thrown when evaluating Customize Axes
│ exception =
│ MethodError: no method matching update_limits!(::Scene, ::AbstractPlotting.Automatic, ::Tuple{Float64, Float64})
│ Closest candidates are:
│ update_limits!(::Scene, ::AbstractPlotting.Automatic) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:514
│ update_limits!(::Scene, ::AbstractPlotting.Automatic, !Matched::Vec{3, Float32}) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:514
│ update_limits!(::Scene) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:512
│ ...
│ Stacktrace:
│ [1] update_limits!(scene::Scene, limits::AbstractPlotting.Automatic)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:516
│ [2] update_limits!(scene::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:512
│ [3] (::AbstractPlotting.var"#86#87"{Scene})(update::Bool, px_area::GeometryBasics.HyperRectangle{2, Int64})
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:92
│ [4] (::Observables.OnUpdate{AbstractPlotting.var"#86#87"{Scene}, Tuple{Observable{Bool}, Observable{GeometryBasics.HyperRectangle{2, Int64}}}})(#unused#::Bool)
│ @ Observables ~/.julia/packages/Observables/A7I8T/src/Observables.jl:293
│ [5] setindex!(observable::Observable{Bool}, val::Bool; notify::Observables.var"#9#11")
│ @ Observables ~/.julia/packages/Observables/A7I8T/src/Observables.jl:205
│ [6] setindex!
│ @ ~/.julia/packages/Observables/A7I8T/src/Observables.jl:201 [inlined]
│ [7] update!(p::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:261
│ [8] show(io::IOContext{IOStream}, m::MIME{Symbol("image/png")}, scene::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:76
│ [9] (::AbstractPlotting.var"#853#854"{Scene, Base.Iterators.Pairs{Symbol, Real, Tuple{Symbol, Symbol, Symbol}, NamedTuple{(:full_fidelity, :pt_per_unit, :px_per_unit), Tuple{Bool, Float64, Float64}}}, DataType})(s::IOStream)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:270
│ [10] open(::AbstractPlotting.var"#853#854"{Scene, Base.Iterators.Pairs{Symbol, Real, Tuple{Symbol, Symbol, Symbol}, NamedTuple{(:full_fidelity, :pt_per_unit, :px_per_unit), Tuple{Bool, Float64, Float64}}}, DataType}, ::String, ::Vararg{String, N} where N; kwargs::Base.Iterators.Pairs{Union{}, Union{}, Tuple{}, NamedTuple{(), Tuple{}}})
│ @ Base ./io.jl:330
│ [11] open(::Function, ::String, ::String)
│ @ Base ./io.jl:328
│ [12] save(f::File{DataFormat{:PNG}}, scene::Scene; resolution::Tuple{Int64, Int64}, pt_per_unit::Float64, px_per_unit::Float64)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:269
│ [13] save
│ @ ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:254 [inlined]
│ [14] save_media
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:19 [inlined]
│ [15] macro expansion
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:297 [inlined]
│ [16] macro expansion
│ @ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
│ [17] (::MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}})(example::MakieGallery.CellEntry, value::Scene)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:293
│ [18] (::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}})(entry::MakieGallery.CellEntry)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:614
│ [19] enumerate_examples(::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}}; start::Int64, exclude_tags::Nothing)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:539
│ [20] #eval_examples#94
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:611 [inlined]
│ [21] macro expansion
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290 [inlined]
│ [22] macro expansion
│ @ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
│ [23] record_examples(folder::String; resolution::Tuple{Int64, Int64}, resume::Bool, generate_thumbnail::Bool, display::Bool, display_output_toplevel::Bool)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290
│ [24] record_examples(folder::String)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:273
│ [25] top-level scope
│ @ ~/.julia/packages/MakieGallery/V0mvg/test/runtests.jl:25
│ [26] include(fname::String)
│ @ Base.MainInclude ./client.jl:444
│ [27] top-level scope
│ @ none:6
│ [28] eval(m::Module, e::Any)
│ @ Core ./boot.jl:360
│ [29] exec_options(opts::Base.JLOptions)
│ @ Base ./client.jl:261
│ [30] _start()
│ @ Base ./client.jl:485
└ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:308
Customize Axes: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/V0mvg/src/io.jl:309
Expression: false
Stacktrace:
[1] macro expansion
@ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:309 [inlined]
[2] macro expansion
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
[3] (::MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}})(example::MakieGallery.CellEntry, value::Scene)
@ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:293
Running contour_1
Running heatmap_2
Running animated_scatter
Running text_annotation
Running text_rotation
Running the_famous_iris_example
┌ Warning: Package MakieGallery does not have DataFrames in its dependencies:
│ - If you have MakieGallery checked out for development and have
│ added DataFrames as a dependency but haven't updated your primary
│ environment's manifest file, try `Pkg.resolve()`.
│ - Otherwise you may need to report an issue with MakieGallery
└ Loading DataFrames into MakieGallery from project dependency, future warnings for MakieGallery are suppressed.
Running linesegments___colors
Running standard_deviation_band
Running parallel_prefix_sum
Running interactive_light_cone
Running streamplot_animation
┌ Warning: Example Streamplot animation failed
│ exception =
│ LoadError: MethodError: no method matching update_limits!(::Scene, ::AbstractPlotting.Automatic, ::Tuple{Int64, Int64})
│ Closest candidates are:
│ update_limits!(::Scene, ::AbstractPlotting.Automatic) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:514
│ update_limits!(::Scene, ::AbstractPlotting.Automatic, !Matched::Vec{3, Float32}) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:514
│ update_limits!(::Scene) at /home/pkgeval/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:512
│ ...
│ Stacktrace:
│ [1] update_limits!(scene::Scene, limits::AbstractPlotting.Automatic)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:516
│ [2] update_limits!(scene::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:512
│ [3] (::AbstractPlotting.var"#86#87"{Scene})(update::Bool, px_area::GeometryBasics.HyperRectangle{2, Int64})
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:92
│ [4] (::Observables.OnUpdate{AbstractPlotting.var"#86#87"{Scene}, Tuple{Observable{Bool}, Observable{GeometryBasics.HyperRectangle{2, Int64}}}})(#unused#::Bool)
│ @ Observables ~/.julia/packages/Observables/A7I8T/src/Observables.jl:293
│ [5] setindex!(observable::Observable{Bool}, val::Bool; notify::Observables.var"#9#11")
│ @ Observables ~/.julia/packages/Observables/A7I8T/src/Observables.jl:205
│ [6] setindex!
│ @ ~/.julia/packages/Observables/A7I8T/src/Observables.jl:201 [inlined]
│ [7] update!(p::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:261
│ [8] foreach
│ @ ./abstractarray.jl:2080 [inlined]
│ [9] update!(p::Scene)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:262
│ [10] VideoStream(scene::Scene; framerate::Int64)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:369
│ [11] record(func::MakieGallery.##TempModule#333.var"#1#2", scene::Scene, path::String, iter::LinRange{Float64}; framerate::Int64, compression::Int64, sleep::Bool)
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:559
│ [12] record(func::Function, scene::Scene, path::String, iter::LinRange{Float64})
│ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/display.jl:559
│ [13] top-level scope
│ @ streamplot_animation:20
│ [14] eval
│ @ ./boot.jl:360 [inlined]
│ [15] include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String)
│ @ Base ./loading.jl:1051
│ [16] include_string
│ @ ./loading.jl:1061 [inlined]
│ [17] eval_example(entry::MakieGallery.CellEntry; kw_args::Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}})
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:583
│ [18] (::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}})(entry::MakieGallery.CellEntry)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:613
│ [19] enumerate_examples(::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}}; start::Int64, exclude_tags::Nothing)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:539
│ [20] #eval_examples#94
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:611 [inlined]
│ [21] macro expansion
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290 [inlined]
│ [22] macro expansion
│ @ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
│ [23] record_examples(folder::String; resolution::Tuple{Int64, Int64}, resume::Bool, generate_thumbnail::Bool, display::Bool, display_output_toplevel::Bool)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290
│ [24] record_examples(folder::String)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:273
│ [25] top-level scope
│ @ ~/.julia/packages/MakieGallery/V0mvg/test/runtests.jl:25
│ [26] include(fname::String)
│ @ Base.MainInclude ./client.jl:444
│ [27] top-level scope
│ @ none:6
│ [28] eval(m::Module, e::Any)
│ @ Core ./boot.jl:360
│ [29] exec_options(opts::Base.JLOptions)
│ @ Base ./client.jl:261
│ [30] _start()
│ @ Base ./client.jl:485
│ in expression starting at streamplot_animation:20
└ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:585
with source:
v(x::Point2{T}, t) where T = Point2{T}(one(T) * x[2] * t, 4 * x[1])
sf = Node(Base.Fix2(v, 0e0))
title_str = Node("t = 0.00")
sp = streamplot(
sf,
-2..2, -2..2;
linewidth = 2,
padding = (0, 0),
arrow_size = 0.09,
colormap =:magma
)
sc = title(sp, title_str)
record(sc, "/home/pkgeval/.julia/packages/MakieGallery/V0mvg/test/test_recordings/tmp/streamplot_animation.mp4", LinRange(0, 20, 5*30)) do i
sf[] = Base.Fix2(v, i)
title_str[] = "t = $(round(i; sigdigits = 2))"
end
┌ Warning: Error thrown when evaluating Streamplot animation
│ exception =
│ MethodError: no method matching save_media(::MakieGallery.CellEntry, ::Nothing, ::String)
│ Closest candidates are:
│ save_media(::Any, !Matched::Scene, ::String) at /home/pkgeval/.julia/packages/MakieGallery/V0mvg/src/io.jl:17
│ save_media(::Any, !Matched::String, ::String) at /home/pkgeval/.julia/packages/MakieGallery/V0mvg/src/io.jl:23
│ save_media(::Any, !Matched::Stepper, ::String) at /home/pkgeval/.julia/packages/MakieGallery/V0mvg/src/io.jl:31
│ ...
│ Stacktrace:
│ [1] macro expansion
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:297 [inlined]
│ [2] macro expansion
│ @ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
│ [3] (::MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}})(example::MakieGallery.CellEntry, value::Nothing)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:293
│ [4] (::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}})(entry::MakieGallery.CellEntry)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:614
│ [5] enumerate_examples(::MakieGallery.var"#95#96"{Bool, Base.Iterators.Pairs{Symbol, MakieGallery.var"#output_path#137"{String}, Tuple{Symbol}, NamedTuple{(:outputfile,), Tuple{MakieGallery.var"#output_path#137"{String}}}}, MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}}}; start::Int64, exclude_tags::Nothing)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:539
│ [6] #eval_examples#94
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/database.jl:611 [inlined]
│ [7] macro expansion
│ @ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290 [inlined]
│ [8] macro expansion
│ @ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
│ [9] record_examples(folder::String; resolution::Tuple{Int64, Int64}, resume::Bool, generate_thumbnail::Bool, display::Bool, display_output_toplevel::Bool)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:290
│ [10] record_examples(folder::String)
│ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:273
│ [11] top-level scope
│ @ ~/.julia/packages/MakieGallery/V0mvg/test/runtests.jl:25
│ [12] include(fname::String)
│ @ Base.MainInclude ./client.jl:444
│ [13] top-level scope
│ @ none:6
│ [14] eval(m::Module, e::Any)
│ @ Core ./boot.jl:360
│ [15] exec_options(opts::Base.JLOptions)
│ @ Base ./client.jl:261
│ [16] _start()
│ @ Base ./client.jl:485
└ @ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:308
Streamplot animation: Test Failed at /home/pkgeval/.julia/packages/MakieGallery/V0mvg/src/io.jl:309
Expression: false
Stacktrace:
[1] macro expansion
@ ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:309 [inlined]
[2] macro expansion
@ /workspace/srcdir/usr/share/julia/stdlib/v1.6/Test/src/Test.jl:1144 [inlined]
[3] (::MakieGallery.var"#135#138"{Tuple{Int64, Int64}, Bool, String, Vector{Any}})(example::MakieGallery.CellEntry, value::Nothing)
@ MakieGallery ~/.julia/packages/MakieGallery/V0mvg/src/io.jl:293
Running line_with_varying_colors
Running viridis_color_scheme
Running timeseries_1
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/3Ttrk/src/ticks.jl:283
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/3Ttrk/src/ticks.jl:283
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/3Ttrk/src/ticks.jl:283
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/3Ttrk/src/ticks.jl:283
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
┌ Warning: limits of scene contain non finite values: Float32[NaN, NaN, 0.0] .. Float32[NaN, NaN, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:521
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/3Ttrk/src/ticks.jl:283
┌ Warning: No strict ticks found
└ @ PlotUtils ~/.julia/packages/PlotUtils/3Ttrk/src/ticks.jl:283
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
ArgumentError: At least one finite value must be provided to formatter.with ticks: [-Inf, Inf]
┌ Warning: Founds 0 width in scene limits: Float32[2.606811, 0.0, 0.0] .. Float32[2.606811, 0.0, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:538
┌ Warning: Founds 0 width in scene limits: Float32[2.606811, 0.0, 0.0] .. Float32[2.606811, 0.0, 0.0]
└ @ AbstractPlotting ~/.julia/packages/AbstractPlotting/u3Mc1/src/scenes.jl:538
Running line_changing_colour_with_observables
Running streamplot_1
Running categorical_heatmap
Running arc_1
Running transforming_lines
Running orthographic_camera
Running volume_function
Running textured_mesh
Running load_mesh
Running colored_mesh
Running wireframe_of_a_mesh
Running wireframe_of_sphere
Running wireframe_of_a_surface
Running surface_1
Running surface_with_image
Running line_function
Running meshscatter_function
Running scatter_1
Running marker_sizes
Running 3d_contour_with_2d_contour_slices
Running contour3d_1
Running arrows_3d
Running image_on_surface_sphere
Running arrows_on_sphere
Running surface___contour3d
Running fem_mesh_3d
Running axis___surface
Running fluctuation_3d
┌ Warning: nvertices argument deprecated. Wrap primitive in `Tesselation(primitive, nvertices)`
└ @ GeometryBasics ~/.julia/packages/GeometryBasics/csguK/src/meshes.jl:190
┌ Warning: nvertices argument deprecated. Wrap primitive in `Tesselation(primitive, nvertices)`
└ @ GeometryBasics ~/.julia/packages/GeometryBasics/csguK/src/meshes.jl:190
Running connected_sphere
Running image_scatter
Running simple_meshscatter
Running sphere_mesh
Running stars
Running unicode_marker
Running merged_color_mesh
Running surface___wireframe___contour
Running streamplot_3d
Running fractional_brownian_surface
Running coloured_fractional_brownian_noise_field
Running volume_on_black_background
Running mouse_picking
Running sliders
Running mouse_hover
Running edit_polygon
Running add_and_change_points
Running orbit_diagram