-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.5.0-DEV-e0740fe5a6.log
2179 lines (2174 loc) · 107 KB
/
1.5.0-DEV-e0740fe5a6.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
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Julia Version 1.5.0-DEV.147
Commit e0740fe5a6 (2020-01-24 14:13 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-8.0.1 (ORCJIT, skylake)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed PooledArrays ──────────────── v0.5.3
Installed StatsKit ──────────────────── v0.3.0
Installed PositiveFactorizations ────── v0.2.3
Installed FFTW_jll ──────────────────── v3.3.9+3
Installed Combinatorics ─────────────── v1.0.0
Installed Requires ──────────────────── v1.0.0
Installed AbstractFFTs ──────────────── v0.5.0
Installed ShiftedArrays ─────────────── v1.0.0
Installed TableTraits ───────────────── v1.0.0
Installed ArrayInterface ────────────── v2.3.1
Installed StatsBase ─────────────────── v0.32.0
Installed Missings ──────────────────── v0.4.3
Installed Compat ────────────────────── v2.2.0
Installed IteratorInterfaceExtensions ─ v1.0.0
Installed HypothesisTests ───────────── v0.9.0
Installed NearestNeighbors ──────────── v0.4.4
Installed OrderedCollections ────────── v1.1.0
Installed RecipesBase ───────────────── v0.7.0
Installed Optim ─────────────────────── v0.20.0
Installed OpenSpecFun_jll ───────────── v0.5.3+1
Installed AxisAlgorithms ────────────── v1.0.0
Installed Tables ────────────────────── v0.2.11
Installed NLSolversBase ─────────────── v7.6.0
Installed Arpack ────────────────────── v0.4.0
Installed Distributions ─────────────── v0.21.12
Installed InvertedIndices ───────────── v1.0.0
Installed FiniteDiff ────────────────── v2.0.0
Installed JSON ──────────────────────── v0.21.0
Installed Reexport ──────────────────── v0.2.0
Installed FilePathsBase ─────────────── v0.7.0
Installed IntelOpenMP_jll ───────────── v2018.0.3+0
Installed Roots ─────────────────────── v0.8.4
Installed CommonSubexpressions ──────── v0.2.0
Installed Ratios ────────────────────── v0.3.1
Installed Distances ─────────────────── v0.8.2
Installed FillArrays ────────────────── v0.8.4
Installed NaNMath ───────────────────── v0.3.3
Installed FFTW ──────────────────────── v1.2.0
Installed OffsetArrays ──────────────── v1.0.2
Installed DataStructures ────────────── v0.17.9
Installed DataAPI ───────────────────── v1.1.0
Installed PDMats ────────────────────── v0.9.11
Installed KernelDensity ─────────────── v0.5.1
Installed StaticArrays ──────────────── v0.12.1
Installed DataValueInterfaces ───────── v1.0.0
Installed CSV ───────────────────────── v0.5.22
Installed StatsFuns ─────────────────── v0.9.3
Installed Bootstrap ─────────────────── v2.2.0
Installed ForwardDiff ───────────────── v0.10.9
Installed Interpolations ────────────── v0.12.7
Installed Arpack_jll ────────────────── v3.5.0+2
Installed QuadGK ────────────────────── v2.3.1
Installed SpecialFunctions ──────────── v0.9.0
Installed BinaryProvider ────────────── v0.5.8
Installed DiffRules ─────────────────── v1.0.0
Installed CategoricalArrays ─────────── v0.7.7
Installed MultivariateStats ─────────── v0.7.0
Installed Loess ─────────────────────── v0.5.0
Installed WoodburyMatrices ──────────── v0.5.0
Installed Rmath ─────────────────────── v0.6.0
Installed DiffResults ───────────────── v1.0.2
Installed WeakRefStrings ────────────── v0.6.2
Installed StatsModels ───────────────── v0.6.7
Installed Parsers ───────────────────── v0.3.10
Installed SortingAlgorithms ─────────── v0.3.1
Installed Polynomials ───────────────── v0.6.0
Installed TimeSeries ────────────────── v0.16.1
Installed Parameters ────────────────── v0.12.0
Installed OpenBLAS_jll ──────────────── v0.3.7+4
Installed MKL_jll ───────────────────── v2019.0.117+2
Installed LineSearches ──────────────── v7.0.1
Installed Clustering ────────────────── v0.13.3
Installed DataFrames ────────────────── v0.20.0
Installed GLM ───────────────────────── v1.3.6
Updating `~/.julia/environments/v1.5/Project.toml`
[2cb19f9e] + StatsKit v0.3.0
Updating `~/.julia/environments/v1.5/Manifest.toml`
[621f4979] + AbstractFFTs v0.5.0
[7d9fca2a] + Arpack v0.4.0
[68821587] + Arpack_jll v3.5.0+2
[4fba245c] + ArrayInterface v2.3.1
[13072b0f] + AxisAlgorithms v1.0.0
[b99e7846] + BinaryProvider v0.5.8
[e28b5b4c] + Bootstrap v2.2.0
[336ed68f] + CSV v0.5.22
[324d7699] + CategoricalArrays v0.7.7
[aaaa29a8] + Clustering v0.13.3
[861a8166] + Combinatorics v1.0.0
[bbf7d656] + CommonSubexpressions v0.2.0
[34da2185] + Compat v2.2.0
[9a962f9c] + DataAPI v1.1.0
[a93c6f00] + DataFrames v0.20.0
[864edb3b] + DataStructures v0.17.9
[e2d170a0] + DataValueInterfaces v1.0.0
[163ba53b] + DiffResults v1.0.2
[b552c78f] + DiffRules v1.0.0
[b4f34e82] + Distances v0.8.2
[31c24e10] + Distributions v0.21.12
[7a1cc6ca] + FFTW v1.2.0
[f5851436] + FFTW_jll v3.3.9+3
[48062228] + FilePathsBase v0.7.0
[1a297f60] + FillArrays v0.8.4
[6a86dc24] + FiniteDiff v2.0.0
[f6369f11] + ForwardDiff v0.10.9
[38e38edf] + GLM v1.3.6
[09f84164] + HypothesisTests v0.9.0
[1d5cc7b8] + IntelOpenMP_jll v2018.0.3+0
[a98d9a8b] + Interpolations v0.12.7
[41ab1584] + InvertedIndices v1.0.0
[82899510] + IteratorInterfaceExtensions v1.0.0
[682c06a0] + JSON v0.21.0
[5ab0869b] + KernelDensity v0.5.1
[d3d80556] + LineSearches v7.0.1
[4345ca2d] + Loess v0.5.0
[856f044c] + MKL_jll v2019.0.117+2
[e1d29d7a] + Missings v0.4.3
[6f286f6a] + MultivariateStats v0.7.0
[d41bc354] + NLSolversBase v7.6.0
[77ba4419] + NaNMath v0.3.3
[b8a86587] + NearestNeighbors v0.4.4
[6fe1bfb0] + OffsetArrays v1.0.2
[4536629a] + OpenBLAS_jll v0.3.7+4
[efe28fd5] + OpenSpecFun_jll v0.5.3+1
[429524aa] + Optim v0.20.0
[bac558e1] + OrderedCollections v1.1.0
[90014a1f] + PDMats v0.9.11
[d96e819e] + Parameters v0.12.0
[69de0a69] + Parsers v0.3.10
[f27b6e38] + Polynomials v0.6.0
[2dfb63ee] + PooledArrays v0.5.3
[85a6dd25] + PositiveFactorizations v0.2.3
[1fd47b50] + QuadGK v2.3.1
[c84ed2f1] + Ratios v0.3.1
[3cdcf5f2] + RecipesBase v0.7.0
[189a3867] + Reexport v0.2.0
[ae029012] + Requires v1.0.0
[79098fc4] + Rmath v0.6.0
[f2b01f46] + Roots v0.8.4
[1277b4bf] + ShiftedArrays v1.0.0
[a2af1166] + SortingAlgorithms v0.3.1
[276daf66] + SpecialFunctions v0.9.0
[90137ffa] + StaticArrays v0.12.1
[2913bbd2] + StatsBase v0.32.0
[4c63d2b9] + StatsFuns v0.9.3
[2cb19f9e] + StatsKit v0.3.0
[3eaba693] + StatsModels v0.6.7
[3783bdb8] + TableTraits v1.0.0
[bd369af6] + Tables v0.2.11
[9e3dc215] + TimeSeries v0.16.1
[ea10d353] + WeakRefStrings v0.6.2
[efce3f68] + WoodburyMatrices v0.5.0
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8bb1440f] + DelimitedFiles
[8ba89e20] + Distributed
[9fa8497b] + Future
[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
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building FFTW ─→ `~/.julia/packages/FFTW/qqcBj/deps/build.log`
Updating `/tmp/jl_M4s5O7/Project.toml`
[no changes]
Updating `/tmp/jl_M4s5O7/Manifest.toml`
[no changes]
Building Rmath → `~/.julia/packages/Rmath/BoBag/deps/build.log`
Updating `/tmp/jl_fw01hQ/Project.toml`
[no changes]
Updating `/tmp/jl_fw01hQ/Manifest.toml`
[no changes]
Testing StatsKit
Updating `/tmp/jl_GRtLWb/Project.toml`
[no changes]
Updating `/tmp/jl_GRtLWb/Manifest.toml`
[no changes]
Running sandbox
Status `/tmp/jl_GRtLWb/Project.toml`
[e28b5b4c] Bootstrap v2.2.0
[336ed68f] CSV v0.5.22
[324d7699] CategoricalArrays v0.7.7
[aaaa29a8] Clustering v0.13.3
[a93c6f00] DataFrames v0.20.0
[b4f34e82] Distances v0.8.2
[31c24e10] Distributions v0.21.12
[38e38edf] GLM v1.3.6
[09f84164] HypothesisTests v0.9.0
[5ab0869b] KernelDensity v0.5.1
[4345ca2d] Loess v0.5.0
[6f286f6a] MultivariateStats v0.7.0
[189a3867] Reexport v0.2.0
[2913bbd2] StatsBase v0.32.0
[2cb19f9e] StatsKit v0.3.0
[9e3dc215] TimeSeries v0.16.1
[44cfe95a] Pkg
[10745b16] Statistics
Testing Bootstrap
Installed Libiconv_jll ─────── v1.16.0+0
Installed Zlib_jll ─────────── v1.2.11+7
Installed CodecZlib ────────── v0.6.0
Installed FileIO ───────────── v1.2.1
Installed EzXML ────────────── v1.1.0
Installed RData ────────────── v0.6.3
Installed Mocking ──────────── v0.7.0
Installed XML2_jll ─────────── v2.9.9+1
Installed TranscodingStreams ─ v0.9.5
Installed TimeZones ────────── v1.0.0
Installed RDatasets ────────── v0.6.6
Updating `/tmp/jl_7Yh5iQ/Project.toml`
[ce6b1742] + RDatasets v0.6.6
Updating `/tmp/jl_7Yh5iQ/Manifest.toml`
[336ed68f] + CSV v0.5.22
[944b1d66] + CodecZlib v0.6.0
[8f5d6c58] + EzXML v1.1.0
[5789e2e9] + FileIO v1.2.1
[48062228] + FilePathsBase v0.7.0
[94ce4f54] + Libiconv_jll v1.16.0+0
[78c3b35d] + Mocking v0.7.0
[df47a6cb] + RData v0.6.3
[ce6b1742] + RDatasets v0.6.6
[ae029012] + Requires v1.0.0
[f269a46b] + TimeZones v1.0.0
[3bb67fe8] + TranscodingStreams v0.9.5
[ea10d353] + WeakRefStrings v0.6.2
[02c8fc9c] + XML2_jll v2.9.9+1
[83775a58] + Zlib_jll v1.2.11+7
Building CodecZlib → `~/.julia/packages/CodecZlib/5t9zO/deps/build.log`
Updating `/tmp/jl_4f77pD/Project.toml`
[no changes]
Updating `/tmp/jl_4f77pD/Manifest.toml`
[no changes]
Building TimeZones → `~/.julia/packages/TimeZones/vYAiM/deps/build.log`
Updating `/tmp/jl_nYLYE7/Project.toml`
[no changes]
Updating `/tmp/jl_nYLYE7/Manifest.toml`
[no changes]
Running sandbox
Status `/tmp/jl_7Yh5iQ/Project.toml`
[e28b5b4c] Bootstrap v2.2.0
[a93c6f00] DataFrames v0.20.0
[31c24e10] Distributions v0.21.12
[38e38edf] GLM v1.3.6
[ce6b1742] RDatasets v0.6.6
[2913bbd2] StatsBase v0.32.0
[3eaba693] StatsModels v0.6.7
[9a3f8284] Random
[10745b16] Statistics
[8dfed614] Test
Test Summary: | Pass Total
Non-parametric bootstraps | 448 448
Test Summary: | Pass Total
Parametric bootstraps | 315 315
Test Summary: | Pass Total
Statistic functions | 1008 1008
Test Summary: | Pass Total
Utility functions | 10 10
Test Summary: | Pass Total
Distributions | 5 5
Testing Bootstrap tests passed
Testing CategoricalArrays
Updating `/tmp/jl_KuIVDC/Project.toml`
[no changes]
Updating `/tmp/jl_KuIVDC/Manifest.toml`
[no changes]
Running sandbox
Status `/tmp/jl_KuIVDC/Project.toml`
[324d7699] CategoricalArrays v0.7.7
[34da2185] Compat v2.2.0
[9a962f9c] DataAPI v1.1.0
[682c06a0] JSON v0.21.0
[e1d29d7a] Missings v0.4.3
[189a3867] Reexport v0.2.0
[9fa8497b] Future
[de0858da] Printf
[10745b16] Statistics
[8dfed614] Test
[4ec0a83e] Unicode
┌ Warning: `eltype(x::CategoricalString)` is deprecated, use `eltype(String(x))` instead.
│ caller = macro expansion at 01_typedef.jl:56 [inlined]
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/01_typedef.jl:56
Test Summary: | Pass Total
01_typedef.jl | 99 99
Test Summary: | Pass Total
02_buildorder.jl | 6 6
Test Summary: | Pass Total
03_buildfields.jl | 6 6
Test Summary: | Pass Total
04_constructors.jl | 121 121
┌ Warning: `eltype(x::CategoricalString)` is deprecated, use `eltype(String(x))` instead.
│ caller = macro expansion at 05_convert.jl:76 [inlined]
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/05_convert.jl:76
Test Summary: | Pass Total
05_convert.jl | 131 131
Test Summary: | Pass Total
05_copy.jl | 14 14
Test Summary: | Pass Total
06_show.jl | 52 52
Test Summary: | Pass Total
06_length.jl | 2 2
Test Summary: | Pass Total
07_levels.jl | 363 363
Test Summary: | Pass Total
08_equality.jl | 110 110
┌ Warning: `isempty(x::CategoricalString)` is deprecated, use `isempty(String(x))` instead.
│ caller = eval_test(::Expr, ::Expr, ::LineNumberNode, ::Bool) at Test.jl:258
└ @ Test /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:258
┌ Warning: `eltype(x::CategoricalString)` is deprecated, use `eltype(String(x))` instead.
│ caller = top-level scope at 08_string.jl:35
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:35
┌ Warning: `eltype(x::CategoricalString)` is deprecated, use `eltype(String(x))` instead.
│ caller = top-level scope at 08_string.jl:36
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:36
┌ Warning: `length(x::CategoricalString)` is deprecated, use `length(String(x))` instead.
│ caller = top-level scope at 08_string.jl:38
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:38
┌ Warning: `length(x::CategoricalString)` is deprecated, use `length(String(x))` instead.
│ caller = top-level scope at 08_string.jl:39
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:39
┌ Warning: `sizeof(x::CategoricalString)` is deprecated, use `sizeof(String(x))` instead.
│ caller = top-level scope at 08_string.jl:41
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:41
┌ Warning: `sizeof(x::CategoricalString)` is deprecated, use `sizeof(String(x))` instead.
│ caller = top-level scope at 08_string.jl:42
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:42
┌ Warning: `nextind(x::CategoricalString, i::Int)` is deprecated, use `nextind(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:44
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:44
┌ Warning: `nextind(x::CategoricalString, i::Int)` is deprecated, use `nextind(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:45
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:45
┌ Warning: `prevind(x::CategoricalString, i::Int)` is deprecated, use `prevind(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:47
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:47
┌ Warning: `prevind(x::CategoricalString, i::Int)` is deprecated, use `prevind(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:48
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:48
┌ Warning: `firstindex(x::CategoricalString)` is deprecated, use `firstindex(String(x))` instead.
│ caller = top-level scope at 08_string.jl:50
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:50
┌ Warning: `firstindex(x::CategoricalString)` is deprecated, use `firstindex(String(x))` instead.
│ caller = top-level scope at 08_string.jl:51
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:51
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = top-level scope at 08_string.jl:53
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:53
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = top-level scope at 08_string.jl:54
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:54
┌ Warning: `collect(x::CategoricalString)` is deprecated, use `collect(String(x))` instead.
│ caller = top-level scope at 08_string.jl:56
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:56
┌ Warning: `collect(x::CategoricalString)` is deprecated, use `collect(String(x))` instead.
│ caller = top-level scope at 08_string.jl:57
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:57
┌ Warning: `getindex(x::CategoricalString, i::Int)` is deprecated, use `getindex(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:59
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:59
┌ Warning: `getindex(x::CategoricalString, i::Int)` is deprecated, use `getindex(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:60
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:60
┌ Warning: `getindex(x::CategoricalString, i::Int)` is deprecated, use `getindex(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:61
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:61
┌ Warning: `getindex(x::CategoricalString, i::Int)` is deprecated, use `getindex(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:62
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:62
┌ Warning: `codeunit(x::CategoricalString, i::Integer)` is deprecated, use `codeunit(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:64
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:64
┌ Warning: `codeunit(x::CategoricalString, i::Integer)` is deprecated, use `codeunit(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:65
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:65
┌ Warning: `codeunit(x::CategoricalString, i::Integer)` is deprecated, use `codeunit(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:66
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:66
┌ Warning: `codeunit(x::CategoricalString, i::Integer)` is deprecated, use `codeunit(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:67
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:67
┌ Warning: `ascii(x::CategoricalString)` is deprecated, use `ascii(String(x))` instead.
│ caller = top-level scope at 08_string.jl:69
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:69
┌ Warning: `ascii(x::CategoricalString)` is deprecated, use `ascii(String(x))` instead.
│ caller = top-level scope at 08_string.jl:70
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:70
┌ Warning: `normalize(x::CategoricalString, s::Symbol)` is deprecated, use `normalize(String(x), s)` instead.
│ caller = top-level scope at 08_string.jl:74
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:74
┌ Warning: `graphemes(x::CategoricalString)` is deprecated, use `graphemes(String(x))` instead.
│ caller = top-level scope at 08_string.jl:76
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:76
┌ Warning: `graphemes(x::CategoricalString)` is deprecated, use `graphemes(String(x))` instead.
│ caller = top-level scope at 08_string.jl:77
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:77
┌ Warning: `isvalid(x::CategoricalString)` is deprecated, use `isvalid(String(x))` instead.
│ caller = top-level scope at 08_string.jl:79
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:79
┌ Warning: `isvalid(x::CategoricalString)` is deprecated, use `isvalid(String(x))` instead.
│ caller = top-level scope at 08_string.jl:80
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:80
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:81
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:81
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:82
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:82
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:83
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:83
┌ Warning: `length(x::CategoricalString, i::Int, j::Int)` is deprecated, use `length(String(x), i, j)` instead.
│ caller = top-level scope at 08_string.jl:85
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:85
┌ Warning: `length(x::CategoricalString, i::Int, j::Int)` is deprecated, use `length(String(x), i, j)` instead.
│ caller = top-level scope at 08_string.jl:86
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:86
┌ Warning: `ncodeunits(x::CategoricalString)` is deprecated, use `ncodeunits(String(x))` instead.
│ caller = nextind(::CategoricalArrays.CategoricalString{UInt32}, ::Int64, ::Int64) at basic.jl:521
└ @ Base ./strings/basic.jl:521
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = nextind(::CategoricalArrays.CategoricalString{UInt32}, ::Int64, ::Int64) at basic.jl:525
└ @ Base ./strings/basic.jl:525
┌ Warning: `repeat(x::CategoricalString, i::Integer)` is deprecated, use `repeat(String(x), i)` instead.
│ caller = ^ at basic.jl:680 [inlined]
└ @ Core ./strings/basic.jl:680
┌ Warning: `repeat(x::CategoricalString, i::Integer)` is deprecated, use `repeat(String(x), i)` instead.
│ caller = ^ at basic.jl:680 [inlined]
└ @ Core ./strings/basic.jl:680
┌ Warning: `repeat(x::CategoricalString, i::Integer)` is deprecated, use `repeat(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:112
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:112
┌ Warning: `repeat(x::CategoricalString, i::Integer)` is deprecated, use `repeat(String(x), i)` instead.
│ caller = top-level scope at 08_string.jl:113
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:113
┌ Warning: `eachmatch(r::Regex, x::CategoricalString; overlap = false)` is deprecated, use `eachmatch(r, String(x), overlap = overlap)` instead.
│ caller = top-level scope at 08_string.jl:115
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:115
┌ Warning: `eachmatch(r::Regex, x::CategoricalString; overlap = false)` is deprecated, use `eachmatch(r, String(x), overlap = overlap)` instead.
│ caller = top-level scope at 08_string.jl:116
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:116
┌ Warning: `firstindex(x::CategoricalString)` is deprecated, use `firstindex(String(x))` instead.
│ caller = match(::Regex, ::CategoricalArrays.CategoricalString{UInt32}) at deprecated.jl:66
└ @ CategoricalArrays ./deprecated.jl:66
┌ Warning: `match(r::Regex, s::CategoricalString, idx::Integer = firstindex(s), add_opts::UInt32 = UInt32(0); kwargs...)` is deprecated, use `match(r, String(s), idx, add_opts; kwargs...)` instead.
│ caller = match(::Regex, ::CategoricalArrays.CategoricalString{UInt32}, ::Int64) at deprecated.jl:66
└ @ CategoricalArrays ./deprecated.jl:66
┌ Warning: `match(r::Regex, s::CategoricalString, idx::Integer = firstindex(s), add_opts::UInt32 = UInt32(0); kwargs...)` is deprecated, use `match(r, String(s), idx, add_opts; kwargs...)` instead.
│ caller = top-level scope at 08_string.jl:121
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:121
┌ Warning: `eachmatch(r::Regex, x::CategoricalString; overlap = false)` is deprecated, use `eachmatch(r, String(x), overlap = overlap)` instead.
│ caller = top-level scope at 08_string.jl:123
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:123
┌ Warning: `eachmatch(r::Regex, x::CategoricalString; overlap = false)` is deprecated, use `eachmatch(r, String(x), overlap = overlap)` instead.
│ caller = top-level scope at 08_string.jl:124
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:124
┌ Warning: `eachmatch(r::Regex, x::CategoricalString; overlap = false)` is deprecated, use `eachmatch(r, String(x), overlap = overlap)` instead.
│ caller = ip:0x0
└ @ Core :-1
┌ Warning: `lpad(x::CategoricalString, n::Integer, c::Union{AbstractChar, AbstractString} = ' ')` is deprecated, use `lpad(String(x), n)` instead.
│ caller = lpad(::CategoricalArrays.CategoricalString{UInt32}, ::Int64) at deprecated.jl:66
└ @ CategoricalArrays ./deprecated.jl:66
┌ Warning: `rpad(x::CategoricalString, n::Integer, c::Union{AbstractChar, AbstractString} = ' ')` is deprecated, use `rpad(String(x), n)` instead.
│ caller = rpad(::CategoricalArrays.CategoricalString{UInt32}, ::Int64) at deprecated.jl:66
└ @ CategoricalArrays ./deprecated.jl:66
┌ Warning: `firstindex(x::CategoricalString)` is deprecated, use `firstindex(String(x))` instead.
│ caller = findfirst(::String, ::CategoricalArrays.CategoricalString{UInt32}) at search.jl:104
└ @ Base ./strings/search.jl:104
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = _searchindex(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64) at search.jl:145
└ @ Base ./strings/search.jl:145
┌ Warning: `nextind(x::CategoricalString, i::Int)` is deprecated, use `nextind(String(x), i)` instead.
│ caller = _searchindex(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64) at search.jl:145
└ @ Base ./strings/search.jl:145
┌ Warning: `ncodeunits(x::CategoricalString)` is deprecated, use `ncodeunits(String(x))` instead.
│ caller = findnext(::Base.Fix2{typeof(isequal),Char}, ::CategoricalArrays.CategoricalString{UInt32}, ::Int64) at search.jl:128
└ @ Base ./strings/search.jl:128
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = findnext(::Base.Fix2{typeof(isequal),Char}, ::CategoricalArrays.CategoricalString{UInt32}, ::Int64) at search.jl:130
└ @ Base ./strings/search.jl:130
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = SubString at substring.jl:39 [inlined]
└ @ Core ./strings/substring.jl:39
┌ Warning: `ncodeunits(x::CategoricalString)` is deprecated, use `ncodeunits(String(x))` instead.
│ caller = checkbounds at basic.jl:188 [inlined]
└ @ Core ./strings/basic.jl:188
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = SubString{CategoricalArrays.CategoricalString{UInt32}}(::CategoricalArrays.CategoricalString{UInt32}, ::Int64, ::Int64) at substring.jl:31
└ @ Base ./strings/substring.jl:31
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = SubString{CategoricalArrays.CategoricalString{UInt32}}(::CategoricalArrays.CategoricalString{UInt32}, ::Int64, ::Int64) at substring.jl:32
└ @ Base ./strings/substring.jl:32
┌ Warning: `nextind(x::CategoricalString, i::Int)` is deprecated, use `nextind(String(x), i)` instead.
│ caller = SubString{CategoricalArrays.CategoricalString{UInt32}}(::CategoricalArrays.CategoricalString{UInt32}, ::Int64, ::Int64) at substring.jl:34
└ @ Base ./strings/substring.jl:34
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = isvalid at substring.jl:86 [inlined]
└ @ Core ./strings/substring.jl:86
┌ Warning: `iterate(x::CategoricalString, i::Int)` is deprecated, use `iterate(String(x), i)` instead.
│ caller = iterate at substring.jl:72 [inlined]
└ @ Core ./strings/substring.jl:72
┌ Warning: `iterate(x::CategoricalString, i::Int)` is deprecated, use `iterate(String(x), i)` instead.
│ caller = iterate at substring.jl:72 [inlined]
└ @ Core ./strings/substring.jl:72
┌ Warning: `nextind(x::CategoricalString, i::Int)` is deprecated, use `nextind(String(x), i)` instead.
│ caller = _searchindex(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64) at search.jl:152
└ @ Base ./strings/search.jl:152
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = SubString at substring.jl:39 [inlined]
└ @ Core ./strings/substring.jl:39
┌ Warning: `ncodeunits(x::CategoricalString)` is deprecated, use `ncodeunits(String(x))` instead.
│ caller = findnext(::Base.Fix2{typeof(==),Char}, ::CategoricalArrays.CategoricalString{UInt32}, ::Int64) at search.jl:128
└ @ Base ./strings/search.jl:128
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = findnext(::Base.Fix2{typeof(==),Char}, ::CategoricalArrays.CategoricalString{UInt32}, ::Int64) at search.jl:130
└ @ Base ./strings/search.jl:130
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = SubString at substring.jl:39 [inlined]
└ @ Core ./strings/substring.jl:39
┌ Warning: `iterate(x::CategoricalString, i::Int)` is deprecated, use `iterate(String(x), i)` instead.
│ caller = iterate at substring.jl:72 [inlined]
└ @ Core ./strings/substring.jl:72
┌ Warning: `iterate(x::CategoricalString, i::Int)` is deprecated, use `iterate(String(x), i)` instead.
│ caller = iterate at substring.jl:72 [inlined]
└ @ Core ./strings/substring.jl:72
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = findlast(::String, ::CategoricalArrays.CategoricalString{UInt32}) at search.jl:312
└ @ Base ./strings/search.jl:312
┌ Warning: `ncodeunits(x::CategoricalString)` is deprecated, use `ncodeunits(String(x))` instead.
│ caller = findprev(::Function, ::CategoricalArrays.CategoricalString{UInt32}, ::Int64) at search.jl:339
└ @ Base ./strings/search.jl:339
┌ Warning: `reverse(x::CategoricalString)` is deprecated, use `reverse(String(x))` instead.
│ caller = findprev(::Function, ::CategoricalArrays.CategoricalString{UInt32}, ::Int64) at search.jl:345
└ @ Base ./strings/search.jl:345
┌ Warning: `ncodeunits(x::CategoricalString)` is deprecated, use `ncodeunits(String(x))` instead.
│ caller = reverseind at basic.jl:650 [inlined]
└ @ Core ./strings/basic.jl:650
┌ Warning: `ncodeunits(x::CategoricalString)` is deprecated, use `ncodeunits(String(x))` instead.
│ caller = thisind(::CategoricalArrays.CategoricalString{UInt32}, ::Int64) at basic.jl:401
└ @ Base ./strings/basic.jl:401
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = thisind(::CategoricalArrays.CategoricalString{UInt32}, ::Int64) at basic.jl:404
└ @ Base ./strings/basic.jl:404
┌ Warning: `prevind(x::CategoricalString, i::Int)` is deprecated, use `prevind(String(x), i)` instead.
│ caller = _rsearchindex(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64) at search.jl:361
└ @ Base ./strings/search.jl:361
┌ Warning: `getindex(x::CategoricalString, i::Int)` is deprecated, use `getindex(String(x), i)` instead.
│ caller = getindex at substring.jl:80 [inlined]
└ @ Core ./strings/substring.jl:80
┌ Warning: `nextind(x::CategoricalString, i::Int)` is deprecated, use `nextind(String(x), i)` instead.
│ caller = _rsearchindex(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64) at search.jl:368
└ @ Base ./strings/search.jl:368
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = last at basic.jl:539 [inlined]
└ @ Core ./strings/basic.jl:539
┌ Warning: `occursin(x::AbstractString, y::CategoricalString)` is deprecated, use `occursin(x, String(y))` instead.
│ caller = eval_test(::Expr, ::Expr, ::LineNumberNode, ::Bool) at Test.jl:258
└ @ Test /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:258
┌ Warning: `startswith(x::CategoricalString, y::AbstractString)` is deprecated, use `startswith(String(x), y)` instead.
│ caller = eval_test(::Expr, ::Expr, ::LineNumberNode, ::Bool) at Test.jl:258
└ @ Test /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:258
┌ Warning: `endswith(x::CategoricalString, y::AbstractString)` is deprecated, use `endswith(String(x), y)` instead.
│ caller = eval_test(::Expr, ::Expr, ::LineNumberNode, ::Bool) at Test.jl:258
└ @ Test /buildworker/worker/package_linux64/build/usr/share/julia/stdlib/v1.5/Test/src/Test.jl:258
┌ Warning: `reverse(x::CategoricalString)` is deprecated, use `reverse(String(x))` instead.
│ caller = top-level scope at 08_string.jl:160
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:160
┌ Warning: `reverse(x::CategoricalString)` is deprecated, use `reverse(String(x))` instead.
│ caller = top-level scope at 08_string.jl:161
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:161
┌ Warning: `split(x::CategoricalString; kwargs...)` is deprecated, use `split(String(x); kwargs...)` instead.
│ caller = top-level scope at 08_string.jl:167
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:167
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = _split(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64, ::Bool, ::Array{SubString{CategoricalArrays.CategoricalString{UInt32}},1}) at util.jl:326
└ @ Base ./strings/util.jl:326
┌ Warning: `firstindex(x::CategoricalString)` is deprecated, use `firstindex(String(x))` instead.
│ caller = findfirst at search.jl:104 [inlined]
└ @ Core ./strings/search.jl:104
┌ Warning: `nextind(x::CategoricalString, i::Int)` is deprecated, use `nextind(String(x), i)` instead.
│ caller = _split(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64, ::Bool, ::Array{SubString{CategoricalArrays.CategoricalString{UInt32}},1}) at util.jl:329
└ @ Base ./strings/util.jl:329
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = SubString at substring.jl:39 [inlined]
└ @ Core ./strings/substring.jl:39
┌ Warning: `split(x::CategoricalString; kwargs...)` is deprecated, use `split(String(x); kwargs...)` instead.
│ caller = top-level scope at 08_string.jl:169
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:169
┌ Warning: `prevind(x::CategoricalString, i::Int)` is deprecated, use `prevind(String(x), i)` instead.
│ caller = _split(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64, ::Bool, ::Array{SubString{CategoricalArrays.CategoricalString{UInt32}},1}) at util.jl:333
└ @ Base ./strings/util.jl:333
┌ Warning: `nextind(x::CategoricalString, i::Int)` is deprecated, use `nextind(String(x), i)` instead.
│ caller = _split(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64, ::Bool, ::Array{SubString{CategoricalArrays.CategoricalString{UInt32}},1}) at util.jl:340
└ @ Base ./strings/util.jl:340
┌ Warning: `iterate(x::CategoricalString, i::Int)` is deprecated, use `iterate(String(x), i)` instead.
│ caller = iterate at substring.jl:72 [inlined]
└ @ Core ./strings/substring.jl:72
┌ Warning: `iterate(x::CategoricalString, i::Int)` is deprecated, use `iterate(String(x), i)` instead.
│ caller = iterate at substring.jl:72 [inlined]
└ @ Core ./strings/substring.jl:72
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = _rsplit(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64, ::Bool, ::Array{SubString{CategoricalArrays.CategoricalString{UInt32}},1}) at util.jl:399
└ @ Base ./strings/util.jl:399
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = findlast at search.jl:312 [inlined]
└ @ Core ./strings/search.jl:312
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = isvalid at substring.jl:86 [inlined]
└ @ Core ./strings/substring.jl:86
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = isvalid at substring.jl:86 [inlined]
└ @ Core ./strings/substring.jl:86
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = isvalid at substring.jl:86 [inlined]
└ @ Core ./strings/substring.jl:86
┌ Warning: `getindex(x::CategoricalString, i::Int)` is deprecated, use `getindex(String(x), i)` instead.
│ caller = getindex at substring.jl:80 [inlined]
└ @ Core ./strings/substring.jl:80
┌ Warning: `nextind(x::CategoricalString, i::Int)` is deprecated, use `nextind(String(x), i)` instead.
│ caller = _rsplit(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64, ::Bool, ::Array{SubString{CategoricalArrays.CategoricalString{UInt32}},1}) at util.jl:403
└ @ Base ./strings/util.jl:403
┌ Warning: `prevind(x::CategoricalString, i::Int)` is deprecated, use `prevind(String(x), i)` instead.
│ caller = _rsplit(::CategoricalArrays.CategoricalString{UInt32}, ::String, ::Int64, ::Bool, ::Array{SubString{CategoricalArrays.CategoricalString{UInt32}},1}) at util.jl:404
└ @ Base ./strings/util.jl:404
┌ Warning: `strip(x::CategoricalString)` is deprecated, use `strip(String(x))` instead.
│ caller = top-level scope at 08_string.jl:175
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:175
┌ Warning: `strip(x::CategoricalString)` is deprecated, use `strip(String(x))` instead.
│ caller = top-level scope at 08_string.jl:176
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:176
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = iterate at basic.jl:684 [inlined]
└ @ Core ./strings/basic.jl:684
┌ Warning: `firstindex(x::CategoricalString)` is deprecated, use `firstindex(String(x))` instead.
│ caller = iterate at basic.jl:684 [inlined]
└ @ Core ./strings/basic.jl:684
┌ Warning: `prevind(x::CategoricalString, i::Int)` is deprecated, use `prevind(String(x), i)` instead.
│ caller = iterate at basic.jl:684 [inlined]
└ @ Core ./strings/basic.jl:684
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = iterate at basic.jl:683 [inlined]
└ @ Core ./strings/basic.jl:683
┌ Warning: `firstindex(x::CategoricalString)` is deprecated, use `firstindex(String(x))` instead.
│ caller = iterate at basic.jl:683 [inlined]
└ @ Core ./strings/basic.jl:683
┌ Warning: `getindex(x::CategoricalString, i::Int)` is deprecated, use `getindex(String(x), i)` instead.
│ caller = iterate at basic.jl:683 [inlined]
└ @ Core ./strings/basic.jl:683
┌ Warning: `prevind(x::CategoricalString, i::Int)` is deprecated, use `prevind(String(x), i)` instead.
│ caller = iterate at basic.jl:683 [inlined]
└ @ Core ./strings/basic.jl:683
┌ Warning: `firstindex(x::CategoricalString)` is deprecated, use `firstindex(String(x))` instead.
│ caller = iterate at basic.jl:684 [inlined]
└ @ Core ./strings/basic.jl:684
┌ Warning: `prevind(x::CategoricalString, i::Int)` is deprecated, use `prevind(String(x), i)` instead.
│ caller = iterate at basic.jl:684 [inlined]
└ @ Core ./strings/basic.jl:684
┌ Warning: `firstindex(x::CategoricalString)` is deprecated, use `firstindex(String(x))` instead.
│ caller = iterate at basic.jl:683 [inlined]
└ @ Core ./strings/basic.jl:683
┌ Warning: `getindex(x::CategoricalString, i::Int)` is deprecated, use `getindex(String(x), i)` instead.
│ caller = iterate at basic.jl:683 [inlined]
└ @ Core ./strings/basic.jl:683
┌ Warning: `prevind(x::CategoricalString, i::Int)` is deprecated, use `prevind(String(x), i)` instead.
│ caller = iterate at basic.jl:683 [inlined]
└ @ Core ./strings/basic.jl:683
┌ Warning: `isvalid(x::CategoricalString, i::Integer)` is deprecated, use `isvalid(String(x), i)` instead.
│ caller = isvalid at substring.jl:86 [inlined]
└ @ Core ./strings/substring.jl:86
┌ Warning: `iterate(x::CategoricalString, i::Int)` is deprecated, use `iterate(String(x), i)` instead.
│ caller = iterate at substring.jl:72 [inlined]
└ @ Core ./strings/substring.jl:72
┌ Warning: `iterate(x::CategoricalString, i::Int)` is deprecated, use `iterate(String(x), i)` instead.
│ caller = iterate at substring.jl:72 [inlined]
└ @ Core ./strings/substring.jl:72
┌ Warning: `lstrip(x::CategoricalString)` is deprecated, use `lstrip(String(x))` instead.
│ caller = top-level scope at 08_string.jl:179
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:179
┌ Warning: `lstrip(x::CategoricalString)` is deprecated, use `lstrip(String(x))` instead.
│ caller = top-level scope at 08_string.jl:180
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:180
┌ Warning: `lastindex(x::CategoricalString)` is deprecated, use `lastindex(String(x))` instead.
│ caller = lstrip(::Base.Fix2{typeof(in),Char}, ::CategoricalArrays.CategoricalString{UInt32}) at util.jl:158
└ @ Base ./strings/util.jl:158
┌ Warning: `firstindex(x::CategoricalString)` is deprecated, use `firstindex(String(x))` instead.
│ caller = iterate at basic.jl:540 [inlined]
└ @ Core ./strings/basic.jl:540
┌ Warning: `ncodeunits(x::CategoricalString)` is deprecated, use `ncodeunits(String(x))` instead.
│ caller = iterate at basic.jl:540 [inlined]
└ @ Core ./strings/basic.jl:540
┌ Warning: `nextind(x::CategoricalString, i::Int)` is deprecated, use `nextind(String(x), i)` instead.
│ caller = iterate at basic.jl:540 [inlined]
└ @ Core ./strings/basic.jl:540
┌ Warning: `iterate(x::CategoricalString)` is deprecated, use `iterate(String(x))` instead.
│ caller = _zip_iterate_some at iterators.jl:352 [inlined]
└ @ Core ./iterators.jl:352
┌ Warning: `rstrip(x::CategoricalString)` is deprecated, use `rstrip(String(x))` instead.
│ caller = top-level scope at 08_string.jl:183
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:183
┌ Warning: `rstrip(x::CategoricalString)` is deprecated, use `rstrip(String(x))` instead.
│ caller = top-level scope at 08_string.jl:184
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:184
┌ Warning: `uppercase(x::CategoricalString)` is deprecated, use `uppercase(String(x))` instead.
│ caller = top-level scope at 08_string.jl:187
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:187
┌ Warning: `uppercase(x::CategoricalString)` is deprecated, use `uppercase(String(x))` instead.
│ caller = top-level scope at 08_string.jl:188
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:188
┌ Warning: `lowercase(x::CategoricalString)` is deprecated, use `lowercase(String(x))` instead.
│ caller = top-level scope at 08_string.jl:190
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:190
┌ Warning: `lowercase(x::CategoricalString)` is deprecated, use `lowercase(String(x))` instead.
│ caller = top-level scope at 08_string.jl:191
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:191
┌ Warning: `titlecase(x::CategoricalString)` is deprecated, use `titlecase(String(x))` instead.
│ caller = top-level scope at 08_string.jl:193
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:193
┌ Warning: `titlecase(x::CategoricalString)` is deprecated, use `titlecase(String(x))` instead.
│ caller = top-level scope at 08_string.jl:194
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:194
┌ Warning: `uppercasefirst(x::CategoricalString)` is deprecated, use `uppercasefirst(String(x))` instead.
│ caller = top-level scope at 08_string.jl:196
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:196
┌ Warning: `uppercasefirst(x::CategoricalString)` is deprecated, use `uppercasefirst(String(x))` instead.
│ caller = top-level scope at 08_string.jl:197
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:197
┌ Warning: `lowercasefirst(x::CategoricalString)` is deprecated, use `lowercasefirst(String(x))` instead.
│ caller = top-level scope at 08_string.jl:199
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:199
┌ Warning: `lowercasefirst(x::CategoricalString)` is deprecated, use `lowercasefirst(String(x))` instead.
│ caller = top-level scope at 08_string.jl:200
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:200
┌ Warning: `chop(x::CategoricalString; kwargs...)` is deprecated, use `chop(String(x); kwargs...)` instead.
│ caller = top-level scope at 08_string.jl:206
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:206
┌ Warning: `chop(x::CategoricalString; kwargs...)` is deprecated, use `chop(String(x); kwargs...)` instead.
│ caller = top-level scope at 08_string.jl:208
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:208
┌ Warning: `chomp(x::CategoricalString)` is deprecated, use `chomp(String(x))` instead.
│ caller = top-level scope at 08_string.jl:210
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:210
┌ Warning: `chomp(x::CategoricalString)` is deprecated, use `chomp(String(x))` instead.
│ caller = top-level scope at 08_string.jl:211
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:211
┌ Warning: `textwidth(x::CategoricalString)` is deprecated, use `textwidth(String(x))` instead.
│ caller = top-level scope at 08_string.jl:213
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:213
┌ Warning: `textwidth(x::CategoricalString)` is deprecated, use `textwidth(String(x))` instead.
│ caller = top-level scope at 08_string.jl:214
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:214
┌ Warning: `isascii(x::CategoricalString)` is deprecated, use `isascii(String(x))` instead.
│ caller = top-level scope at 08_string.jl:216
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:216
┌ Warning: `isascii(x::CategoricalString)` is deprecated, use `isascii(String(x))` instead.
│ caller = top-level scope at 08_string.jl:217
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:217
┌ Warning: `escape_string(x::CategoricalString)` is deprecated, use `escape_string(String(x))` instead.
│ caller = top-level scope at 08_string.jl:219
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:219
┌ Warning: `escape_string(x::CategoricalString)` is deprecated, use `escape_string(String(x))` instead.
│ caller = top-level scope at 08_string.jl:220
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:220
┌ Warning: `collect(x::CategoricalString)` is deprecated, use `collect(String(x))` instead.
│ caller = top-level scope at 08_string.jl:222
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:222
┌ Warning: `collect(x::CategoricalString)` is deprecated, use `collect(String(x))` instead.
│ caller = top-level scope at 08_string.jl:223
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/test/08_string.jl:223
Test Summary: | Pass Total
08_string.jl | 151 151
Test Summary: | Pass Total
09_hash.jl | 54 54
Test Summary: | Pass Total
10_isless.jl | 429 429
Test Summary: | Pass Total
11_array.jl | 9054 9054
Test Summary: | Pass Total
12_missingarray.jl | 12672 12672
┌ Warning: adding new levels to ordered CategoricalArray destination will throw an error in the future
│ caller = copy! at array.jl:426 [inlined]
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/src/array.jl:426
┌ Warning: adding new levels to ordered CategoricalArray destination will throw an error in the future
│ caller = copyto!(::CategoricalArrays.CategoricalArray{String,1,UInt32,String,CategoricalArrays.CategoricalString{UInt32},Union{}}, ::CategoricalArrays.CategoricalArray{String,1,UInt32,String,CategoricalArrays.CategoricalString{UInt32},Union{}}) at array.jl:415
└ @ CategoricalArrays ~/.julia/packages/CategoricalArrays/dmrjI/src/array.jl:415
┌ Warning: adding new levels to ordered CategoricalArray destination will throw an error in the future
│ caller = copyto!(::CategoricalArrays.CategoricalArray{String,1,UInt32,String,CategoricalArrays.CategoricalString{UInt32},Union{}}, ::Int64, ::CategoricalArrays.CategoricalArray{String,1,UInt32,String,CategoricalArrays.CategoricalString{UInt32},Union{}}, ::Int64) at abstractarray.jl:829
└ @ Base ./abstractarray.jl:829
┌ Warning: adding new levels to ordered CategoricalArray destination will throw an error in the future
│ caller = copy! at array.jl:426 [inlined]
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/src/array.jl:426
┌ Warning: adding new levels to ordered CategoricalArray destination will throw an error in the future
│ caller = copyto!(::SubArray{CategoricalArrays.CategoricalString{UInt32},1,CategoricalArrays.CategoricalArray{String,1,UInt32,String,CategoricalArrays.CategoricalString{UInt32},Union{}},Tuple{UnitRange{Int64}},true}, ::CategoricalArrays.CategoricalArray{String,1,UInt32,String,CategoricalArrays.CategoricalString{UInt32},Union{}}) at array.jl:415
└ @ CategoricalArrays ~/.julia/packages/CategoricalArrays/dmrjI/src/array.jl:415
┌ Warning: adding new levels to ordered CategoricalArray destination will throw an error in the future
│ caller = copy! at array.jl:426 [inlined]
└ @ Core ~/.julia/packages/CategoricalArrays/dmrjI/src/array.jl:426
┌ Warning: adding new levels to ordered CategoricalArray destination will throw an error in the future
│ caller = copyto!(::CategoricalArrays.CategoricalArray{Union{Missing, String},1,UInt32,String,CategoricalArrays.CategoricalString{UInt32},Missing}, ::CategoricalArrays.CategoricalArray{Union{Missing, String},1,UInt32,String,CategoricalArrays.CategoricalString{UInt32},Missing}) at array.jl:415
└ @ CategoricalArrays ~/.julia/packages/CategoricalArrays/dmrjI/src/array.jl:415
┌ Warning: adding new levels to ordered CategoricalArray destination will throw an error in the future
│ caller = copyto!(::CategoricalArrays.CategoricalArray{Union{Missing, String},1,UInt32,String,CategoricalArrays.CategoricalString{UInt32},Missing}, ::Int64, ::CategoricalArrays.CategoricalArray{Union{Missing, String},1,UInt32,String,CategoricalArrays.CategoricalString{UInt32},Missing}, ::Int64) at abstractarray.jl:829
└ @ Base ./abstractarray.jl:829
Test Summary: | Pass Total
13_arraycommon.jl | 22825 22825
Test Summary: | Pass Total
14_view.jl | 158 158
Test Summary: | Pass Total
15_extras.jl | 99 99
Test Summary: | Pass Total
16_recode.jl | 808 808
Testing CategoricalArrays tests passed
Testing Clustering
Updating `/tmp/jl_jw98gH/Project.toml`
[944b1d66] + CodecZlib v0.6.0
Updating `/tmp/jl_jw98gH/Manifest.toml`
[b99e7846] + BinaryProvider v0.5.8
[944b1d66] + CodecZlib v0.6.0
[3bb67fe8] + TranscodingStreams v0.9.5
[ea8e919c] + SHA
Running sandbox
Status `/tmp/jl_jw98gH/Project.toml`
[aaaa29a8] Clustering v0.13.3
[944b1d66] CodecZlib v0.6.0
[b4f34e82] Distances v0.8.2
[b8a86587] NearestNeighbors v0.4.4
[2913bbd2] StatsBase v0.32.0
[37e2e46d] LinearAlgebra
[de0858da] Printf
[9a3f8284] Random
[2f01184e] SparseArrays
[10745b16] Statistics
[8dfed614] Test
Runing tests:
* seeding.jl ...
Test Summary: | Pass Total
seeding | 64 64
* kmeans.jl ...
Iters objv objv-change | affected
-------------------------------------------------------------
0 1.470563e+00
1 7.352817e-01 -7.352817e-01 | 0
2 7.352817e-01 0.000000e+00 | 0
K-means converged with 2 iterations (objv = 0.7352816593329847)
K-means converged with 2 iterations (objv = 0.09164881001248792)
┌ Warning: The clustering cost increased at iteration #1
└ @ Clustering ~/.julia/packages/Clustering/Dlx92/src/kmeans.jl:179
Test Summary: | Pass Total
kmeans() (k-means) | 87 87
* kmedoids.jl ...
Iters objv objv-change
-----------------------------------------------------
0 1.589132e+00
1 1.623600e+00 3.446832e-02
2 1.623600e+00 0.000000e+00
K-medoids converged with 2 iterations (objv = 1.6236002870003423)
K-medoids converged with 2 iterations (objv = 1.6236002870003423)
Test Summary: | Pass Total
kmedoids() (k-medoids) | 26 26
* affprop.jl ...
Iters objv-change | exemplars
-----------------------------------------------------
1 1.7243e+00 | 1
2 1.1599e+00 | 1
3 1.0111e+00 | 1
4 8.2884e-01 | 1
5 6.2996e-01 | 1
6 4.4970e-01 | 1
7 3.0568e-01 | 1
8 1.9999e-01 | 1
9 1.2694e-01 | 1
10 7.8624e-02 | 1
Affinity propagation converged with 10 iterations: 1 exemplars.
Affinity propagation converged with 9 iterations: 1 exemplars.
Test Summary: | Pass Total
affinityprop() (affinity propagation) | 78 78
* dbscan.jl ...
Test Summary: | Pass Total
dbscan() (DBSCAN clustering) | 19 19
* fuzzycmeans.jl ...
Iters center-change
----------------------------
1 5.244585e-01
2 1.013155e-01
3 2.621402e-01
4 2.313798e-01
5 3.691017e-02
Fuzzy C-means converged with 5 iterations (δ = 0.036910170483319474)
Fuzzy C-means converged with 6 iterations (δ = 0.052544440650040276)
Test Summary: | Pass Total
fuzzy_cmeans() | 36 36
* counts.jl ...
Test Summary: | Pass Total
counts() (contingency matrix) | 22 22
* silhouette.jl ...
Test Summary: | Pass Broken Total
silhouettes() | 11 1 12
* varinfo.jl ...
Test Summary: | Pass Total
varinfo() (variational information) | 7 7
* randindex.jl ...
Test Summary: | Pass Total
randindex() (Rand index) | 13 13
* hclust.jl ...
Test Summary: | Pass Total
hclust() (hierarchical clustering) | 6665 6665
* mcl.jl ...
[ Info: Starting MCL iterations...
┌ Info: MCL iter. #0: rel.Δ=
└ rel_delta = 0.0
[ Info: MCL converged after 0 iteration(s)
[ Info: Generating MCL clusters...
[ Info: Starting MCL iterations...
[ Info: MCL converged after 0 iteration(s)
[ Info: Generating MCL clusters...
Test Summary: | Pass Broken Total
MCL | 33 1 34
* vmeasure.jl ...
Test Summary: | Pass Broken Total
V-measure | 8 1 9
* mutualinfo.jl ...
Test Summary: | Pass Total
mutualinfo() (mutual information) | 4 4
Testing Clustering tests passed
Testing CSV
Updating `/tmp/jl_c9EUau/Project.toml`
[944b1d66] + CodecZlib v0.6.0
Updating `/tmp/jl_c9EUau/Manifest.toml`
[b99e7846] + BinaryProvider v0.5.8
[944b1d66] + CodecZlib v0.6.0
[3bb67fe8] + TranscodingStreams v0.9.5
Running sandbox
Status `/tmp/jl_c9EUau/Project.toml`
[336ed68f] CSV v0.5.22
[324d7699] CategoricalArrays v0.7.7
[944b1d66] CodecZlib v0.6.0
[a93c6f00] DataFrames v0.20.0
[48062228] FilePathsBase v0.7.0
[69de0a69] Parsers v0.3.10
[2dfb63ee] PooledArrays v0.5.3
[bd369af6] Tables v0.2.11
[ea10d353] WeakRefStrings v0.6.2
[ade2ca70] Dates
[a63ad114] Mmap
[9a3f8284] Random
[8dfed614] Test
[4ec0a83e] Unicode
thread = 1 warning: only found 7 / 8 columns on data row: 1. Filling remaining columns with `missing`
thread = 1 warning: error parsing Int64 on row = 1, col = 1: "abc
", error=INVALID: SENTINEL | NEWLINE | EOF | INVALID_DELIMITER
testing test_utf8_with_BOM.csv
testing test_utf8.csv
testing test_windows.csv
testing test_single_column.csv
testing test_empty_file.csv
testing test_empty_file_newlines.csv
testing test_simple_quoted.csv
testing test_quoted_delim_and_newline.csv
testing test_quoted_numbers.csv
testing test_crlf_line_endings.csv
testing test_newline_line_endings.csv
testing test_mac_line_endings.csv
testing test_no_header.csv
testing test_2_footer_rows.csv
testing test_footer_missing.csv
testing test_footer_missing.csv
testing test_dates.csv
testing test_excel_date_formats.csv
testing test_datetimes.csv
testing test_missing_value_NULL.csv
testing test_missing_value_NULL.csv
testing test_missing_value.csv
testing test_header_range.csv
testing test_header_int_list.csv
testing test_basic.csv