-
Notifications
You must be signed in to change notification settings - Fork 0
/
failures.yml
1467 lines (1467 loc) · 62.1 KB
/
failures.yml
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
- uuid: 0144022d-7626-48b7-867b-06d945449d75
name: REoptLite
info:
tag: repo_inaccessible
- uuid: 034a18dc-0e7b-49fe-982a-6cb6859f61a6
name: SoftmaxRegression
info:
tag: repo_inaccessible
- uuid: 0366c28c-dc25-47c7-912f-d29916230b20
name: MergedIterators
info:
tag: repo_inaccessible
- uuid: 04c32fc2-bb1c-4ba6-8717-c9d43359126f
name: SkyMaps
info:
tag: repo_inaccessible
- uuid: 129db535-0459-46ad-8d3d-b1fb8f318c74
name: PeaceVote
info:
tag: repo_inaccessible
- uuid: 13b29641-ba3c-435b-b4fe-906d24f049a9
name: HydrophoneCalibrations
info:
tag: repo_inaccessible
- uuid: 144146ce-868b-5e43-9e5b-0e94f26a569f
name: Qutilities
info:
tag: repo_inaccessible
- uuid: 18269d71-cc38-4e02-b8c8-1db30113a6dd
name: Actors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/JuliaActors/Actors.jl.git --rev 9f7090e27d6b0f888bd5385106c076ac46f8bdb2 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-gbA4cCnI/Actors.jl-9f7090e/.git/
fatal: remote error: upload-pack: not our ref 9f7090e27d6b0f888bd5385106c076ac46f8bdb2
From https://github.co...
version: '"0.1.0"'
- uuid: 1826ff36-e735-464f-baa4-30cb618cd5cb
name: GCTAccess
info:
tag: repo_inaccessible
- uuid: 1a361701-5cf3-415b-af48-956f67dbd5f6
name: MaxwellGuidedMode
info:
tag: repo_inaccessible
- uuid: 1d6e2fc3-29aa-4bd6-bf55-212bcb8e2840
name: FinEtoolsFlexBeams
info:
tag: repo_inaccessible
- uuid: 1e25b1b3-a3a0-53b8-8729-934c9d7c4cc0
name: GPnet
info:
tag: repo_inaccessible
- uuid: 1f9da163-5ddd-5895-b7bb-161347ed2303
name: StanMamba
info:
tag: repo_inaccessible
- uuid: 205e633a-858c-4dbb-8a70-2404f270abcf
name: HTML5
info:
tag: repo_inaccessible
- uuid: 2098c8a6-82c4-11e9-1f54-e72760d085ce
name: LibSymspg
info:
tag: repo_inaccessible
- uuid: 2377441b-c98c-4b62-8dd7-ad61dfe8e447
name: StandaloneIpopt
info:
tag: repo_inaccessible
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 80e583b8d077d1eac4deb8ca83e1f5a5e3c30c79 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-o5U49QYK/ITensors.jl-80e583b/.git/
fatal: remote error: upload-pack: not our ref 80e583b8d077d1eac4deb8ca83e1f5a5e3c30c79
From https://github....
version: '"0.1.0"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 65aa3f8c752bb3b52c0f12c2e882f161f92da31c (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-nGcRpDCC/ITensors.jl-65aa3f8/.git/
fatal: remote error: upload-pack: not our ref 65aa3f8c752bb3b52c0f12c2e882f161f92da31c
From https://github....
version: '"0.1.1"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 7abcc288a9740f949b85cb9322ae0173b9e39e52 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-V5tJPb1x/ITensors.jl-7abcc28/.git/
fatal: remote error: upload-pack: not our ref 7abcc288a9740f949b85cb9322ae0173b9e39e52
From https://github....
version: '"0.1.10"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 07bdf9f7c0093525f89a1dbfc200201e8eb10ec5 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-HVwIMjDc/ITensors.jl-07bdf9f/.git/
fatal: remote error: upload-pack: not our ref 07bdf9f7c0093525f89a1dbfc200201e8eb10ec5
From https://github....
version: '"0.1.11"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 43616d34e2cd46ae927236b3c589e31e352ee122 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-kF9MyrN7/ITensors.jl-43616d3/.git/
fatal: remote error: upload-pack: not our ref 43616d34e2cd46ae927236b3c589e31e352ee122
From https://github....
version: '"0.1.12"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 9fef63addc0374cc5583371494c04d86e70d088a (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-ioWxo2uI/ITensors.jl-9fef63a/.git/
fatal: remote error: upload-pack: not our ref 9fef63addc0374cc5583371494c04d86e70d088a
From https://github....
version: '"0.1.13"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 36c2ccf490afa25abef657f6eeaac07a1bb54226 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-KNKyp7O4/ITensors.jl-36c2ccf/.git/
fatal: remote error: upload-pack: not our ref 36c2ccf490afa25abef657f6eeaac07a1bb54226
From https://github....
version: '"0.1.14"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 7d02e04e2c4f0e8adc4df08600644a382473858f (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-2EllUouP/ITensors.jl-7d02e04/.git/
fatal: remote error: upload-pack: not our ref 7d02e04e2c4f0e8adc4df08600644a382473858f
From https://github....
version: '"0.1.15"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 4321ed4d91f61475720165c3e71e205b166e51cf (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-K3YeLN1b/ITensors.jl-4321ed4/.git/
fatal: remote error: upload-pack: not our ref 4321ed4d91f61475720165c3e71e205b166e51cf
From https://github....
version: '"0.1.16"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev ca34e2189b1834fe7efe0c2fed95f2e057551599 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-B7oe78Wk/ITensors.jl-ca34e21/.git/
fatal: remote error: upload-pack: not our ref ca34e2189b1834fe7efe0c2fed95f2e057551599
From https://github....
version: '"0.1.17"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev f626dd1828017ed8e9395b60d82a93008871e60b (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-VR8fJKf5/ITensors.jl-f626dd1/.git/
fatal: remote error: upload-pack: not our ref f626dd1828017ed8e9395b60d82a93008871e60b
From https://github....
version: '"0.1.18"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev e3d3148f654f74fdcb6ae32f47fefceef3c1bfef (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-mIndvVjf/ITensors.jl-e3d3148/.git/
fatal: remote error: upload-pack: not our ref e3d3148f654f74fdcb6ae32f47fefceef3c1bfef
From https://github....
version: '"0.1.19"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev a9389e214473d1d4aa360c63afda5fb1709dba5a (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-XCVNStKJ/ITensors.jl-a9389e2/.git/
fatal: remote error: upload-pack: not our ref a9389e214473d1d4aa360c63afda5fb1709dba5a
From https://github....
version: '"0.1.2"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev bda841a7f70a4defa50f49bf67787bdb1094fde7 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-dnS4buGi/ITensors.jl-bda841a/.git/
fatal: remote error: upload-pack: not our ref bda841a7f70a4defa50f49bf67787bdb1094fde7
From https://github....
version: '"0.1.20"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev b7731352406eed43a135140d5951118ad27c8be1 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-i8POd7ie/ITensors.jl-b773135/.git/
fatal: remote error: upload-pack: not our ref b7731352406eed43a135140d5951118ad27c8be1
From https://github....
version: '"0.1.21"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 19a0f3ffa7f386c126b6bc4e77ebdf7ee460d2b6 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-J2gc659i/ITensors.jl-19a0f3f/.git/
fatal: remote error: upload-pack: not our ref 19a0f3ffa7f386c126b6bc4e77ebdf7ee460d2b6
From https://github....
version: '"0.1.22"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev dc211d6949d15800b951d0381a2bbb2f3a3592ac (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-c3aLgqVY/ITensors.jl-dc211d6/.git/
fatal: remote error: upload-pack: not our ref dc211d6949d15800b951d0381a2bbb2f3a3592ac
From https://github....
version: '"0.1.23"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev dd59361151a5a08c4f577ba993811d5f4a834355 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-wGx31Ekp/ITensors.jl-dd59361/.git/
fatal: remote error: upload-pack: not our ref dd59361151a5a08c4f577ba993811d5f4a834355
From https://github....
version: '"0.1.24"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 11bae733ec18ff1b01765316e8807ea21f94239f (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-hQ16ud98/ITensors.jl-11bae73/.git/
fatal: remote error: upload-pack: not our ref 11bae733ec18ff1b01765316e8807ea21f94239f
From https://github....
version: '"0.1.25"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev afa415b820b60f17f88d54df017903c31a3519ae (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-KmKlOqIu/ITensors.jl-afa415b/.git/
fatal: remote error: upload-pack: not our ref afa415b820b60f17f88d54df017903c31a3519ae
From https://github....
version: '"0.1.26"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 574a84cffe286a7d0e8f530b3cb5e3cd8ad2a2df (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-ODmYj8Nx/ITensors.jl-574a84c/.git/
fatal: remote error: upload-pack: not our ref 574a84cffe286a7d0e8f530b3cb5e3cd8ad2a2df
From https://github....
version: '"0.1.27"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev e7892580c1d2e4cdc3751f40124076f74b2c5775 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-F5l5P41D/ITensors.jl-e789258/.git/
fatal: remote error: upload-pack: not our ref e7892580c1d2e4cdc3751f40124076f74b2c5775
From https://github....
version: '"0.1.28"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 68d85baaef9caecc41d3902629cf6a736ce0e30b (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-FpHCDgop/ITensors.jl-68d85ba/.git/
fatal: remote error: upload-pack: not our ref 68d85baaef9caecc41d3902629cf6a736ce0e30b
From https://github....
version: '"0.1.29"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 85d3d8bb38f252c876aea82b498c05afc7b25537 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-16kZ9ETR/ITensors.jl-85d3d8b/.git/
fatal: remote error: upload-pack: not our ref 85d3d8bb38f252c876aea82b498c05afc7b25537
From https://github....
version: '"0.1.3"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 936c75d97ae4fbe1b900a58130b89bb06d53400b (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-UPCpys2B/ITensors.jl-936c75d/.git/
fatal: remote error: upload-pack: not our ref 936c75d97ae4fbe1b900a58130b89bb06d53400b
From https://github....
version: '"0.1.30"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 3c79433ea0c0f4aa945370c274dde8766636bfda (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-xyPI1e2q/ITensors.jl-3c79433/.git/
fatal: remote error: upload-pack: not our ref 3c79433ea0c0f4aa945370c274dde8766636bfda
From https://github....
version: '"0.1.31"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev b326583a33d12fd8399161a7367135afb8280b1b (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-hS7oucDq/ITensors.jl-b326583/.git/
fatal: remote error: upload-pack: not our ref b326583a33d12fd8399161a7367135afb8280b1b
From https://github....
version: '"0.1.32"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 59988f4d45f919e51dfe0cba1a91c8e745a71843 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-A1VXwA47/ITensors.jl-59988f4/.git/
fatal: remote error: upload-pack: not our ref 59988f4d45f919e51dfe0cba1a91c8e745a71843
From https://github....
version: '"0.1.4"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev f68845718ac5c94fb1feb560730801d9246fd7f2 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-1tm6x7zq/ITensors.jl-f688457/.git/
fatal: remote error: upload-pack: not our ref f68845718ac5c94fb1feb560730801d9246fd7f2
From https://github....
version: '"0.1.5"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev a1b8f6f36e0641bc4e8c2c6ec31c3570b09620db (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-IPGBqPbQ/ITensors.jl-a1b8f6f/.git/
fatal: remote error: upload-pack: not our ref a1b8f6f36e0641bc4e8c2c6ec31c3570b09620db
From https://github....
version: '"0.1.6"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 56d535bbbf0611ddc5dfbe01532d98b8e2212142 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-XXLdDVGx/ITensors.jl-56d535b/.git/
fatal: remote error: upload-pack: not our ref 56d535bbbf0611ddc5dfbe01532d98b8e2212142
From https://github....
version: '"0.1.7"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 1814ce25ae5ada4ee162f70b15f5951da8742247 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-UlWZj28j/ITensors.jl-1814ce2/.git/
fatal: remote error: upload-pack: not our ref 1814ce25ae5ada4ee162f70b15f5951da8742247
From https://github....
version: '"0.1.8"'
- uuid: 23ae76d9-e61a-49c4-8f12-3f1a16adf9cf
name: NDTensors
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/ITensor/ITensors.jl.git --rev 578b204211e2f9ded1cccd8728bca60503964d90 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-NxryNm3Z/ITensors.jl-578b204/.git/
fatal: remote error: upload-pack: not our ref 578b204211e2f9ded1cccd8728bca60503964d90
From https://github....
version: '"0.1.9"'
- uuid: 261d18cc-621b-11ea-1fb1-6780d106abdc
name: GPMLj
info:
tag: repo_inaccessible
- uuid: 265b7df6-2be8-4c25-b607-723db51099b1
name: SALTBase
info:
tag: repo_inaccessible
- uuid: 286ff66b-9b1b-5805-8ad0-4d725a2cae59
name: Vortice
info:
tag: repo_inaccessible
- uuid: 2ae464b0-21de-4247-9233-e7c17725eb53
name: InstrumentConfig
info:
tag: repo_inaccessible
- uuid: 2c84d669-3b95-46c3-a358-9a76f739ac9c
name: Atmosphere
info:
tag: repo_inaccessible
- uuid: 2e2c70e5-d463-5cb0-9776-5d0c86956fe9
name: DataFitting
info:
tag: repo_inaccessible
- uuid: 2f046eea-e9a0-482c-8c12-e34140017081
name: RDDP
info:
tag: repo_inaccessible
- uuid: 2f0bda38-0aac-4c24-8082-32a9a5324934
name: BraidChains
info:
tag: repo_inaccessible
- uuid: 30c4ba4d-5c6d-4df8-9a6f-7ded98721337
name: VoxelwiseConstantMapping
info:
tag: repo_inaccessible
- uuid: 31692b3b-61a6-410b-a229-5e9354f2e019
name: CDLmotif
info:
tag: repo_inaccessible
- uuid: 32aeb37a-e545-4ed8-bfb1-909facd87807
name: Settn
info:
tag: repo_inaccessible
- uuid: 332a3e40-df62-419b-9f04-2cb73588ccaf
name: LibAwsChecksums
info:
tag: repo_inaccessible
- uuid: 35055d32-6816-4a65-8aeb-d6e3aca393e8
name: KirUtil
info:
tag: repo_inaccessible
- uuid: 353a8573-383f-4727-b0e9-478950a5ec11
name: DrillMudsThermalProps
info:
tag: repo_inaccessible
- uuid: 374a444c-c624-4b44-9de1-37c0fe7c6d41
name: SoilWater_ToolBox
info:
tag: repo_inaccessible
- uuid: 379a6b09-926d-464b-b907-221504e1dab7
name: SimpleTweaks
info:
tag: repo_inaccessible
- uuid: 3acb29d5-902e-4acc-9bd8-2830ece8358d
name: SemanticSpaces
info:
tag: repo_inaccessible
- uuid: 3b6521e1-56b2-406b-b1f7-6ae6ec1fb69e
name: ExtremalOptimization
info:
tag: repo_inaccessible
- uuid: 3f2ee0b8-2aac-4501-a955-6c9296aa3f9e
name: RandomizedNMF
info:
tag: repo_inaccessible
- uuid: 44994717-8eef-47f3-a7e0-6b313e1778f0
name: EnlilGrids
info:
tag: repo_inaccessible
- uuid: 4544d5e4-abc5-4dea-817f-29e4c205d9c8
name: Boltz
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/Boltz.jl.git --rev 30de49fe5ffa0afa10838aa636a457df30ecc95a (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-AYpzQDcK/Boltz.jl-30de49f/.git/
fatal: remote error: upload-pack: not our ref 30de49fe5ffa0afa10838aa636a457df30ecc95a
From https://github.com...
version: '"0.1.0"'
- uuid: 4544d5e4-abc5-4dea-817f-29e4c205d9c8
name: Boltz
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/Boltz.jl.git --rev 6f2056ac4dc1cf70814946b091d17ce6cf775248 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-7JxIE0T9/Boltz.jl-6f2056a/.git/
fatal: remote error: upload-pack: not our ref 6f2056ac4dc1cf70814946b091d17ce6cf775248
From https://github.com...
version: '"0.1.1"'
- uuid: 4544d5e4-abc5-4dea-817f-29e4c205d9c8
name: Boltz
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/Boltz.jl.git --rev a4cf0ea2c6902de5b40579642d47a15dd96c243c (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-gLeDIfEw/Boltz.jl-a4cf0ea/.git/
fatal: remote error: upload-pack: not our ref a4cf0ea2c6902de5b40579642d47a15dd96c243c
From https://github.com...
version: '"0.1.2"'
- uuid: 4544d5e4-abc5-4dea-817f-29e4c205d9c8
name: Boltz
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/Boltz.jl.git --rev 0856e41ec946565d15749eb907874eda5322c114 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-ElOhd4Is/Boltz.jl-0856e41/.git/
fatal: remote error: upload-pack: not our ref 0856e41ec946565d15749eb907874eda5322c114
From https://github.com...
version: '"0.1.3"'
- uuid: 4544d5e4-abc5-4dea-817f-29e4c205d9c8
name: Boltz
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/Boltz.jl.git --rev c94ec44e9e40966a6d9121d46fa5599eb6effa1f (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-pVLhLNMD/Boltz.jl-c94ec44/.git/
fatal: remote error: upload-pack: not our ref c94ec44e9e40966a6d9121d46fa5599eb6effa1f
From https://github.com...
version: '"0.1.4"'
- uuid: 4544d5e4-abc5-4dea-817f-29e4c205d9c8
name: Boltz
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/Boltz.jl.git --rev 830eb482d81a8d1c85d69552231a77d947f4a452 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-QqJnhNUV/Boltz.jl-830eb48/.git/
fatal: remote error: upload-pack: not our ref 830eb482d81a8d1c85d69552231a77d947f4a452
From https://github.com...
version: '"0.1.5"'
- uuid: 4544d5e4-abc5-4dea-817f-29e4c205d9c8
name: Boltz
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/Boltz.jl.git --rev f61c4abf2913d62e4f1fb089d26357f865598d97 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-rvdKAfIK/Boltz.jl-f61c4ab/.git/
fatal: remote error: upload-pack: not our ref f61c4abf2913d62e4f1fb089d26357f865598d97
From https://github.com...
version: '"0.1.6"'
- uuid: 484b717a-98b9-4b0c-89dc-fb7d7e739263
name: MeshKeeper
info:
tag: repo_inaccessible
- uuid: 4908299a-382f-4474-b696-db03060d32c1
name: GMTAccess
info:
tag: repo_inaccessible
- uuid: 49ffb959-a01e-48ce-b0f8-35f9b0bd11b7
name: Sysexits
info:
tag: repo_inaccessible
- uuid: 4acbeb90-81a0-11ea-1966-bdaff8155998
name: Stipple
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/GenieFramework/Stipple.jl.git --rev 7fb1b0fc091473d74b95ee7681031d74e586cbae (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-MSI4JlEm/Stipple.jl-7fb1b0f/.git/
fatal: remote error: upload-pack: not our ref 7fb1b0fc091473d74b95ee7681031d74e586cbae
From https://github.c...
version: '"0.1.0"'
- uuid: 4eec09b6-37c8-513a-a01b-84ce271f0312
name: JeszenszkiBasis
info:
tag: repo_inaccessible
- uuid: 4fe2279e-80f0-4adb-8463-ee114ff56b7d
name: SparseIR
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/SpM-lab/SparseIR.jl.git --rev 8e8a8053a0f4ffcd91ea39f74f6717a884ea5a14 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-BM3o5vf8/SparseIR.jl-8e8a805/.git/
fatal: remote error: upload-pack: not our ref 8e8a8053a0f4ffcd91ea39f74f6717a884ea5a14
From https://github....
version: '"0.1.0"'
- uuid: 4fe2279e-80f0-4adb-8463-ee114ff56b7d
name: SparseIR
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/SpM-lab/SparseIR.jl.git --rev f91cd5c9655c42783bebc900be8e3a3bad1a77d3 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-XaRbLSyr/SparseIR.jl-f91cd5c/.git/
fatal: remote error: upload-pack: not our ref f91cd5c9655c42783bebc900be8e3a3bad1a77d3
From https://github....
version: '"0.2.0"'
- uuid: 4fe2279e-80f0-4adb-8463-ee114ff56b7d
name: SparseIR
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/SpM-lab/SparseIR.jl.git --rev 60e1814aeb4d026330b0e09a937aae10082600fe (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-GOhbA576/SparseIR.jl-60e1814/.git/
fatal: remote error: upload-pack: not our ref 60e1814aeb4d026330b0e09a937aae10082600fe
From https://github....
version: '"0.3.0"'
- uuid: 4fe2279e-80f0-4adb-8463-ee114ff56b7d
name: SparseIR
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/SpM-lab/SparseIR.jl.git --rev 60b13f0652e9e0fedf060b53811e6ed3260ca028 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-fCP5QZmO/SparseIR.jl-60b13f0/.git/
fatal: remote error: upload-pack: not our ref 60b13f0652e9e0fedf060b53811e6ed3260ca028
From https://github....
version: '"0.4.0"'
- uuid: 4fe2279e-80f0-4adb-8463-ee114ff56b7d
name: SparseIR
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/SpM-lab/SparseIR.jl.git --rev 9ff7a3f87c84625e6ce1c9fe4f4433e1b6c17f62 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-hp25g0UY/SparseIR.jl-9ff7a3f/.git/
fatal: remote error: upload-pack: not our ref 9ff7a3f87c84625e6ce1c9fe4f4433e1b6c17f62
From https://github....
version: '"0.5.0"'
- uuid: 4fe2279e-80f0-4adb-8463-ee114ff56b7d
name: SparseIR
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/SpM-lab/SparseIR.jl.git --rev bdb1ac43d1d3d6d7013f1871393b3a1bfaebd567 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-Vx0Xz5l8/SparseIR.jl-bdb1ac4/.git/
fatal: remote error: upload-pack: not our ref bdb1ac43d1d3d6d7013f1871393b3a1bfaebd567
From https://github....
version: '"0.6.0"'
- uuid: 4fe2279e-80f0-4adb-8463-ee114ff56b7d
name: SparseIR
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/SpM-lab/SparseIR.jl.git --rev 60e43fd07934951f037e23705b2a24663608ecba (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-C39mA0BV/SparseIR.jl-60e43fd/.git/
fatal: remote error: upload-pack: not our ref 60e43fd07934951f037e23705b2a24663608ecba
From https://github....
version: '"0.7.0"'
- uuid: 4fe2279e-80f0-4adb-8463-ee114ff56b7d
name: SparseIR
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/SpM-lab/SparseIR.jl.git --rev f09b4d14915bd1e117878c780b700f683835fcc7 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-RHh8ZLbN/SparseIR.jl-f09b4d1/.git/
fatal: remote error: upload-pack: not our ref f09b4d14915bd1e117878c780b700f683835fcc7
From https://github....
version: '"0.8.0"'
- uuid: 4fe2279e-80f0-4adb-8463-ee114ff56b7d
name: SparseIR
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/SpM-lab/SparseIR.jl.git --rev 9796c9831fed2ffd3c100fd0b4e48c9feeb09d3c (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-bRlPxKHo/SparseIR.jl-9796c98/.git/
fatal: remote error: upload-pack: not our ref 9796c9831fed2ffd3c100fd0b4e48c9feeb09d3c
From https://github....
version: '"0.9.0"'
- uuid: 4fe2279e-80f0-4adb-8463-ee114ff56b7d
name: SparseIR
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/SpM-lab/SparseIR.jl.git --rev 3abea0d054a8f7b1e7b73df30c385a2f37dd9006 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-RyekdzYE/SparseIR.jl-3abea0d/.git/
fatal: remote error: upload-pack: not our ref 3abea0d054a8f7b1e7b73df30c385a2f37dd9006
From https://github....
version: '"0.9.1"'
- uuid: 5163218f-e962-4d1b-9436-42cf34da72ec
name: MultilayerFiber
info:
tag: repo_inaccessible
- uuid: 51c8708f-2dd9-446d-a0d4-ba9f49ba4b23
name: LibAwsCompression
info:
tag: repo_inaccessible
- uuid: 53b67e40-53a7-4335-973f-e3e901fe4865
name: ComoniconTestUtils
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/comonicon/Comonicon.jl.git --rev 8b947bada59b46db1920638892d23fbaaeacae8d (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-yPez0eoC/Comonicon.jl-8b947ba/.git/
fatal: remote error: upload-pack: not our ref 8b947bada59b46db1920638892d23fbaaeacae8d
From https://github...
version: '"0.1.0"'
- uuid: 53b67e40-53a7-4335-973f-e3e901fe4865
name: ComoniconTestUtils
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/comonicon/Comonicon.jl.git --rev 4b2e62e128046c0126ccedd8fa6c3be376deb139 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-4fsInpih/Comonicon.jl-4b2e62e/.git/
fatal: remote error: upload-pack: not our ref 4b2e62e128046c0126ccedd8fa6c3be376deb139
From https://github...
version: '"0.2.0"'
- uuid: 558fcde3-b420-4fcf-b6fa-fc874c7e75b7
name: KitePodSimulator
info:
tag: repo_inaccessible
- uuid: 55efb022-e1be-4044-9089-57a478d003fb
name: IterativeLearningControl
info:
tag: repo_inaccessible
- uuid: 577c3ae3-e2e9-4c4d-8517-88b63258dae5
name: SumOfExponentials
info:
tag: repo_inaccessible
- uuid: 5ab975a5-f155-4336-a876-3801e55c18d2
name: RhsJTool
info:
tag: repo_inaccessible
- uuid: 5cda3ad9-a1fd-4c59-8c0c-bd6100725b84
name: Telescope
info:
tag: repo_inaccessible
- uuid: 5cf70722-ebfd-496e-996c-d9fcb5a97026
name: S2TwTrans
info:
tag: repo_inaccessible
- uuid: 5e2c8b86-4afa-40de-bd09-d9d381e5dc2b
name: MultiAssign
info:
tag: repo_inaccessible
- uuid: 5eb54613-e1e4-5bb3-a6bc-ad608a6b2204
name: MackeyGlass
info:
tag: repo_inaccessible
- uuid: 66835562-f1c4-5586-a145-e564a3963a4b
name: HighLevelTypes
info:
tag: repo_inaccessible
- uuid: 6c2f61f8-fafd-4db0-a534-9240d45f7a9c
name: CalculatedABC
info:
tag: repo_inaccessible
- uuid: 6cf45cad-7870-4d4d-b567-e05cd8632aa3
name: IntensityScans
info:
tag: repo_inaccessible
- uuid: 6d7a0864-9fbc-11e9-1427-7bb65d6eba8e
name: RandomizedPropertyTest
info:
tag: repo_inaccessible
- uuid: 6ede814e-e28c-40c4-8292-4ab1886a440f
name: PonchonSavarit
info:
tag: repo_inaccessible
- uuid: 71b753c1-733f-4418-b8b2-c1bb484780f7
name: YahooFinance
info:
tag: repo_inaccessible
- uuid: 7207f3b3-84f3-4c9f-b950-dd331d8ad5c8
name: MaxwellInterface
info:
tag: repo_inaccessible
- uuid: 73b108b0-3f95-4bd2-8c7c-23af2537d260
name: AuthGG
info:
tag: repo_inaccessible
- uuid: 73d1964e-ddff-49b5-b01c-23c02cc88402
name: NuclearCalculator
info:
tag: repo_inaccessible
- uuid: 75185e45-e16e-4c90-beee-275c7fc4acba
name: BigG
info:
tag: repo_inaccessible
- uuid: 766d9fe0-8bda-4b1c-9671-3009ced25364
name: RestApis
info:
tag: repo_inaccessible
- uuid: 7700fd7a-0a3e-455e-9ac1-177bceab20a5
name: SparsePCA
info:
tag: repo_inaccessible
- uuid: 7707c54a-f152-44d3-a3d6-cc4209ac0b85
name: LibAwsEventStream
info:
tag: repo_inaccessible
- uuid: 7743456c-e0c5-4477-a2b6-196c240b0368
name: PeaceCypher
info:
tag: repo_inaccessible
- uuid: 7ddc1c72-b467-4b56-ac1e-188734e3cfa7
name: MaxwellBase
info:
tag: repo_inaccessible
- uuid: 7e4e0a2a-738e-4919-8f64-2391d105e660
name: LibAwsS3
info:
tag: repo_inaccessible
- uuid: 80e77ffc-c35e-544b-8e57-5accc6d0de25
name: StanDataFrames
info:
tag: repo_inaccessible
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev 1a4f916e8dfd2323e9ef73b3b924e166a5748269 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-1HBpetZ8/LuxLib.jl-1a4f916/.git/
fatal: remote error: upload-pack: not our ref 1a4f916e8dfd2323e9ef73b3b924e166a5748269
From https://github.co...
version: '"0.1.0"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev 8cc4d06ad0b133bb70c565450ad6b044ce748efc (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-6d3ZiheJ/LuxLib.jl-8cc4d06/.git/
fatal: remote error: upload-pack: not our ref 8cc4d06ad0b133bb70c565450ad6b044ce748efc
From https://github.co...
version: '"0.1.1"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev 8858c62f2343c27e1737d131700a5a311887784e (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-HvXTvQdW/LuxLib.jl-8858c62/.git/
fatal: remote error: upload-pack: not our ref 8858c62f2343c27e1737d131700a5a311887784e
From https://github.co...
version: '"0.1.10"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev d561affe8fa9117bdff555ea599ecd19f01ef9a5 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-03kPYsMZ/LuxLib.jl-d561aff/.git/
fatal: remote error: upload-pack: not our ref d561affe8fa9117bdff555ea599ecd19f01ef9a5
From https://github.co...
version: '"0.1.11"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev 9fc45ac9d82a1908706b0a4b994f7132f8a94668 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-3XxSI20R/LuxLib.jl-9fc45ac/.git/
fatal: remote error: upload-pack: not our ref 9fc45ac9d82a1908706b0a4b994f7132f8a94668
From https://github.co...
version: '"0.1.12"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev 9fe77d526ab7e3b84780c68a967194e89c160117 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-zhlCfJJI/LuxLib.jl-9fe77d5/.git/
fatal: remote error: upload-pack: not our ref 9fe77d526ab7e3b84780c68a967194e89c160117
From https://github.co...
version: '"0.1.2"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev ad5e5d579634e878d49e6cb861303562e3c57d90 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-GM0gXcuD/LuxLib.jl-ad5e5d5/.git/
fatal: remote error: upload-pack: not our ref ad5e5d579634e878d49e6cb861303562e3c57d90
From https://github.co...
version: '"0.1.3"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev 9ec54ecd4803b3518609e58a5d7d41e3d58434bf (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-wuEp2Wsx/LuxLib.jl-9ec54ec/.git/
fatal: remote error: upload-pack: not our ref 9ec54ecd4803b3518609e58a5d7d41e3d58434bf
From https://github.co...
version: '"0.1.4"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev 57f08dae63cf8b9a9d54c065374737973ae530e6 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-jHaGkz9a/LuxLib.jl-57f08da/.git/
fatal: remote error: upload-pack: not our ref 57f08dae63cf8b9a9d54c065374737973ae530e6
From https://github.co...
version: '"0.1.5"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev 2d1e84e6e2101f16229fef083e3913bab1cb6b18 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-ja7bIGgk/LuxLib.jl-2d1e84e/.git/
fatal: remote error: upload-pack: not our ref 2d1e84e6e2101f16229fef083e3913bab1cb6b18
From https://github.co...
version: '"0.1.6"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev f09510c1cc477ff704ee943359aeb72944a1cf9f (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-F3cSOiBy/LuxLib.jl-f09510c/.git/
fatal: remote error: upload-pack: not our ref f09510c1cc477ff704ee943359aeb72944a1cf9f
From https://github.co...
version: '"0.1.7"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev c82f038c56d9c50be0de6ad5acd6cee016bd66dd (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-bjurgajm/LuxLib.jl-c82f038/.git/
fatal: remote error: upload-pack: not our ref c82f038c56d9c50be0de6ad5acd6cee016bd66dd
From https://github.co...
version: '"0.1.8"'
- uuid: 82251201-b29d-42c6-8e01-566dec8acb11
name: LuxLib
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/LuxDL/LuxLib.jl.git --rev f59e10e664104b37fe05a56eaaed8d296f2a4ac2 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-3HGxRhiy/LuxLib.jl-f59e10e/.git/
fatal: remote error: upload-pack: not our ref f59e10e664104b37fe05a56eaaed8d296f2a4ac2
From https://github.co...
version: '"0.1.9"'
- uuid: 8243b59d-e2f9-4d7c-a464-631a5f298ce7
name: MLJScikitLearn
info:
tag: repo_inaccessible
- uuid: 85f775e4-5132-11e9-29db-1f7edb98f041
name: DutyCycles
info:
tag: repo_inaccessible
- uuid: 88be2ce5-dfe4-4538-82c0-aa279cdf463c
name: InfrastructureSensing
info:
tag: repo_inaccessible
- uuid: 88c30151-f523-4140-98ec-337064e805aa
name: ArtGallery
info:
tag: repo_inaccessible
- uuid: 89d1cb86-bf84-46ce-bdfb-ab7f830013b1
name: Psychrometrics
info:
tag: repo_inaccessible
- uuid: 8d120385-201d-43c1-a82b-e15c39505f50
name: SqState
info:
tag: repo_inaccessible
- uuid: 8f1571ae-b3a1-52af-8ab1-32258739efdb
name: StanMCMCChain
info:
tag: repo_inaccessible
- uuid: 91393fb9-e38b-4a31-9409-aa579b4163ad
name: UniformIsingModels
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/stecrotti/UniformIsingModels.jl.git --rev 1bff5842a90a89c683815c8003036083f8de1cc8 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-6uIhEiri/UniformIsingModels.jl-1bff584/.git/
fatal: remote error: upload-pack: not our ref 1bff5842a90a89c683815c8003036083f8de1cc8
From https...
version: '"0.2.0"'
- uuid: 94afc05e-a560-4acd-8e11-a7bb2c092f45
name: MeshFinder
info:
tag: repo_inaccessible
- uuid: 963d7961-7533-4a80-bf6b-d3653d506006
name: ExtraFun
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/Kirusifix/ExtraFun.jl.git --rev 93508d4abd4b42851102c44fbdc802503b4c444b (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-KMtAbybx/ExtraFun.jl-93508d4/.git/
fatal: remote error: upload-pack: not our ref 93508d4abd4b42851102c44fbdc802503b4c444b
From https://github....
version: '"1.0.0"'
- uuid: 963d7961-7533-4a80-bf6b-d3653d506006
name: ExtraFun
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/Kirusifix/ExtraFun.jl.git --rev 23bf3425bef1c848186e312253f7e5ff5a01c7ab (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-cS5at31l/ExtraFun.jl-23bf342/.git/
fatal: remote error: upload-pack: not our ref 23bf3425bef1c848186e312253f7e5ff5a01c7ab
From https://github....
version: '"1.1.0"'
- uuid: 963d7961-7533-4a80-bf6b-d3653d506006
name: ExtraFun
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/Kirusifix/ExtraFun.jl.git --rev a60222b8719790b0716f748ee3a313b8926e1d70 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-MTW9KDe9/ExtraFun.jl-a60222b/.git/
fatal: remote error: upload-pack: not our ref a60222b8719790b0716f748ee3a313b8926e1d70
From https://github....
version: '"1.2.0"'
- uuid: 963d7961-7533-4a80-bf6b-d3653d506006
name: ExtraFun
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/Kirusifix/ExtraFun.jl.git --rev 76216961b3dd598d81f848f0a43602d7112ce1ef (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-lH7skftq/ExtraFun.jl-7621696/.git/
fatal: remote error: upload-pack: not our ref 76216961b3dd598d81f848f0a43602d7112ce1ef
From https://github....
version: '"1.2.1"'
- uuid: 963d7961-7533-4a80-bf6b-d3653d506006
name: ExtraFun
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/Kirusifix/ExtraFun.jl.git --rev d74cbbebc6836362b97a6f635afe82fcad9ff380 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-6ylSV6Kv/ExtraFun.jl-d74cbbe/.git/
fatal: remote error: upload-pack: not our ref d74cbbebc6836362b97a6f635afe82fcad9ff380
From https://github....
version: '"1.3.0"'
- uuid: 963d7961-7533-4a80-bf6b-d3653d506006
name: ExtraFun
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/Kirusifix/ExtraFun.jl.git --rev e471fe2c22e74d83f5911d80333274fed3339759 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-2PPhoQdQ/ExtraFun.jl-e471fe2/.git/
fatal: remote error: upload-pack: not our ref e471fe2c22e74d83f5911d80333274fed3339759
From https://github....
version: '"1.3.1"'
- uuid: 963d7961-7533-4a80-bf6b-d3653d506006
name: ExtraFun
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/Kirusifix/ExtraFun.jl.git --rev a3f9962cf8c3cd5fed5d4646089b194e22bc1852 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-0fVOReVD/ExtraFun.jl-a3f9962/.git/
fatal: remote error: upload-pack: not our ref a3f9962cf8c3cd5fed5d4646089b194e22bc1852
From https://github....
version: '"1.4.0"'
- uuid: 963d7961-7533-4a80-bf6b-d3653d506006
name: ExtraFun
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/Kirusifix/ExtraFun.jl.git --rev d7c2b297c141199b0a0cd816a89061be77a3049b (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-5IgMWzy2/ExtraFun.jl-d7c2b29/.git/
fatal: remote error: upload-pack: not our ref d7c2b297c141199b0a0cd816a89061be77a3049b
From https://github....
version: '"1.5.0"'
- uuid: 963d7961-7533-4a80-bf6b-d3653d506006
name: ExtraFun
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/Kirusifix/ExtraFun.jl.git --rev f7e955277d6733f74e695852f0ab6bb9e57d70f3 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-Vu3ERMIr/ExtraFun.jl-f7e9552/.git/
fatal: remote error: upload-pack: not our ref f7e955277d6733f74e695852f0ab6bb9e57d70f3
From https://github....
version: '"1.5.1"'
- uuid: 963d7961-7533-4a80-bf6b-d3653d506006
name: ExtraFun
info:
tag: specific_version
text: |-
Failed to nix-prefetch-git https://github.com/Kirusifix/ExtraFun.jl.git --rev 98a0f61483e4da7d22d5c64f2c085c7f49ee38d8 (exited with 1). Stdout: . Stderr: Initialized empty Git repository in /tmp/git-checkout-tmp-b2AcoxiO/ExtraFun.jl-98a0f61/.git/
fatal: remote error: upload-pack: not our ref 98a0f61483e4da7d22d5c64f2c085c7f49ee38d8
From https://github....
version: '"1.5.2"'
- uuid: 963d7961-7533-4a80-bf6b-d3653d506006
name: ExtraFun