-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies
More file actions
1086 lines (1048 loc) · 110 KB
/
Copy pathdependencies
File metadata and controls
1086 lines (1048 loc) · 110 KB
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
# python3-aodhclient
python3-aodhclient noarch 3.2.0-0.20230310203215.5a8598c.el9 delorean-component-clients 54 k
python-oslo-concurrency-lang noarch 5.1.1-0.20230412082954.0af5942.el9 delorean-component-common 13 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-middleware-lang noarch 5.1.1-0.20230310201037.7725ac9.el9 delorean-component-common 11 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-amqp noarch 5.1.1-1.el9s delorean-antelope-testing 93 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-bcrypt x86_64 3.2.2-4.el9s delorean-antelope-testing 43 k
python3-cachetools noarch 5.2.0-3.el9s delorean-antelope-testing 31 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-eventlet noarch 0.33.1-4.el9s delorean-antelope-testing 365 k
python3-fasteners noarch 0.18-1.el9s delorean-antelope-testing 37 k
python3-fixtures noarch 4.0.1-1.el9s delorean-antelope-testing 93 k
python3-futurist noarch 2.4.1-0.20230310123225.159d752.el9 delorean-component-common 62 k
python3-greenlet x86_64 1.1.3-1.el9s delorean-antelope-testing 105 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jinja2 noarch 3.0.1-2.el9s delorean-antelope-testing 511 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-kombu noarch 1:5.2.4-3.el9s delorean-antelope-testing 322 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-concurrency noarch 5.1.1-0.20230412082954.0af5942.el9 delorean-component-common 42 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-context noarch 5.1.1-0.20230310191714.7696282.el9 delorean-component-common 26 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-log noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 62 k
python3-oslo-messaging noarch 14.2.0-0.20230310154842.687dea2.el9 delorean-component-common 222 k
python3-oslo-metrics noarch 0.6.0-0.20230310153035.95013ef.el9 delorean-component-common 23 k
python3-oslo-middleware noarch 5.1.1-0.20230310201037.7725ac9.el9 delorean-component-common 56 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-service noarch 3.1.1-0.20230310193545.b3ba591.el9 delorean-component-common 69 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-osprofiler noarch 3.4.3-0.20230310121559.3286301.el9 delorean-component-common 128 k
python3-paste noarch 3.5.2-2.el9 epel 774 k
python3-paste-deploy noarch 2.1.1-7.el9 epel 40 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-prometheus_client noarch 0.13.1-1.el9 epel 90 k
python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k
python3-pyngus noarch 2.3.0-8.el9s delorean-antelope-testing 51 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-qpid-proton x86_64 0.37.0-2.el9 epel 462 k
python3-repoze-lru noarch 0.7-10.el9s delorean-antelope-testing 31 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-routes noarch 2.5.1-1.el9s delorean-antelope-testing 188 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-statsd noarch 3.2.1-20.el9s delorean-antelope-testing 34 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-tempita noarch 0.5.2-8.el9 epel 36 k
python3-vine noarch 5.0.0-3.el9s delorean-antelope-testing 25 k
python3-webob noarch 1.8.7-6.el9 epel 230 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-yappi x86_64 1.3.6-1.el9s delorean-antelope-testing 55 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
qpid-proton-c x86_64 0.37.0-2.el9 epel 283 k
# python3-barbicanclient
python3-barbicanclient noarch 5.5.0-0.20230310180033.ad14b64.el9 delorean-component-clients 134 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-ceilometerclient
# python3-cinderclient
python3-cinderclient noarch 9.3.0-0.20230310173716.f7a612e.el9 delorean-component-clients 218 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
# python3-cloudkittyclient
python3-cloudkittyclient noarch 4.7.0-0.20230310133146.97dc4d6.el9 delorean-component-clients 75 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-jsonpath-rw noarch 1.4.0-4.el9s delorean-antelope-testing 38 k
python3-jsonpath-rw-ext noarch 1.2.2-2.el9s delorean-antelope-testing 38 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-client-config noarch 2.1.0-0.20230327143840.bc96c23.el9 delorean-component-clients 53 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-context noarch 5.1.1-0.20230310191714.7696282.el9 delorean-component-common 26 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-log noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 62 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-congressclient
# python3-cyborgclient
# python3-designateclient
python3-designateclient noarch 5.2.0-0.20230310173343.bc39d23.el9 delorean-component-clients 97 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-dracclient
python3-dracclient noarch 8.0.1-0.20230310134717.b4f1db2.el9 delorean-component-baremetal 179 k
# python3-glanceclient
python3-glanceclient noarch 1:4.3.0-0.20230310182551.52fb6b2.el9 delorean-component-clients 147 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-warlock noarch 1.3.3-5.el9s delorean-antelope-testing 20 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
# python3-glareclient
# python3-gnocchiclient
python3-gnocchiclient noarch 7.0.7-0.20230310114541.cad2c27.el9 delorean-component-clients 97 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-futurist noarch 2.4.1-0.20230310123225.159d752.el9 delorean-component-common 62 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-monotonic noarch 1.5-15.el9 epel 17 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-ujson x86_64 5.7.0-1.el9 epel 34 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-heatclient
python3-heatclient noarch 3.2.0-0.20230310183420.712739e.el9 delorean-component-clients 157 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-swiftclient noarch 4.2.0-0.20230310160202.7bd0951.el9 delorean-component-clients 162 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-ibmcclient
python3-ibmcclient noarch 0.2.5.1-0.20230310113301.8d8cfe9.el9 delorean-component-baremetal 71 k
# python3-ironic-inspector-client
python3-ironic-inspector-client noarch 4.9.0-0.20230310173148.009346e.el9 delorean-component-clients 67 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-ironicclient
python3-ironicclient noarch 5.1.0-0.20230310145439.f945974.el9 delorean-component-clients 346 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-keystoneclient
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-magnumclient
python3-magnumclient noarch 4.1.0-0.20230310181705.de11f40.el9 delorean-component-clients 113 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-client-config noarch 2.1.0-0.20230327143840.bc96c23.el9 delorean-component-clients 53 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-context noarch 5.1.1-0.20230310191714.7696282.el9 delorean-component-common 26 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-log noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 62 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-manilaclient
python3-manilaclient noarch 4.3.0-0.20230310185835.0748620.el9 delorean-component-clients 658 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-context noarch 5.1.1-0.20230310191714.7696282.el9 delorean-component-common 26 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-log noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 62 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-mistralclient
python3-mistralclient noarch 5.0.0-0.20230310153603.b94abb4.el9 delorean-component-clients 164 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-monascaclient
python3-monascaclient noarch 2.7.0-0.20230310123603.bb7d4b6.el9 delorean-component-clients 54 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-muranoclient
python3-muranoclient noarch 2.6.0-0.20230310202447.862c7be.el9 delorean-component-clients 329 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-glanceclient noarch 1:4.3.0-0.20230310182551.52fb6b2.el9 delorean-component-clients 147 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-murano-pkg-check noarch 0.3.0-20.el9s delorean-antelope-testing 56 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-context noarch 5.1.1-0.20230310191714.7696282.el9 delorean-component-common 26 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-log noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 62 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-semantic_version noarch 2.8.4-7.el9s delorean-antelope-testing 40 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-warlock noarch 1.3.3-5.el9s delorean-antelope-testing 20 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-yaql noarch 2.0.0-2.el9s delorean-antelope-testing 133 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-neutronclient
python3-neutronclient noarch 9.0.0-0.20230310174237.16a2cd1.el9 delorean-component-clients 292 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-client-config noarch 2.1.0-0.20230327143840.bc96c23.el9 delorean-component-clients 53 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-context noarch 5.1.1-0.20230310191714.7696282.el9 delorean-component-common 26 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-log noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 62 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-novaclient
python3-novaclient noarch 1:18.3.0-0.20230313070857.85e4f08.el9 delorean-component-clients 219 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
# python3-octaviaclient
python3-octaviaclient noarch 3.4.0-0.20230310203948.6e306cc.el9 delorean-component-clients 90 k
python-openstackclient-lang noarch 6.2.0-0.20230310204751.05d34ff.el9 delorean-component-clients 56 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cinderclient noarch 9.3.0-0.20230310173716.f7a612e.el9 delorean-component-clients 218 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-munch noarch 2.5.0-8.el9 epel 23 k
python3-neutronclient noarch 9.0.0-0.20230310174237.16a2cd1.el9 delorean-component-clients 292 k
python3-novaclient noarch 1:18.3.0-0.20230313070857.85e4f08.el9 delorean-component-clients 219 k
python3-openstackclient noarch 6.2.0-0.20230310204751.05d34ff.el9 delorean-component-clients 1.2 M
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-client-config noarch 2.1.0-0.20230327143840.bc96c23.el9 delorean-component-clients 53 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-context noarch 5.1.1-0.20230310191714.7696282.el9 delorean-component-common 26 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-log noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 62 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-openstackclient
python3-openstackclient noarch 6.2.0-0.20230310204751.05d34ff.el9 delorean-component-clients 1.2 M
python-openstackclient-lang noarch 6.2.0-0.20230310204751.05d34ff.el9 delorean-component-clients 56 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cinderclient noarch 9.3.0-0.20230310173716.f7a612e.el9 delorean-component-clients 218 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-neutronclient noarch 9.0.0-0.20230310174237.16a2cd1.el9 delorean-component-clients 292 k
python3-novaclient noarch 1:18.3.0-0.20230313070857.85e4f08.el9 delorean-component-clients 219 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-client-config noarch 2.1.0-0.20230327143840.bc96c23.el9 delorean-component-clients 53 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-context noarch 5.1.1-0.20230310191714.7696282.el9 delorean-component-common 26 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-log noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 62 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-osc-placement
python3-osc-placement noarch 4.1.0-0.20230310151710.b6505e2.el9 delorean-component-clients 51 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-pankoclient
# python3-rsdclient
python3-rsdclient noarch 1.0.2-0.20230310111801.d1a515e.el9 delorean-component-clients 45 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rsd-lib noarch 1.2.0-0.20230310110425.6090753.el9 delorean-component-clients 200 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-sushy noarch 4.4.2-0.20230417113342.98c8999.el9 delorean-component-baremetal 188 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-saharaclient
python3-saharaclient noarch 4.1.0-0.20230310130803.d0c0eb5.el9 delorean-component-clients 186 k
python-openstackclient-lang noarch 6.2.0-0.20230310204751.05d34ff.el9 delorean-component-clients 56 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cinderclient noarch 9.3.0-0.20230310173716.f7a612e.el9 delorean-component-clients 218 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-neutronclient noarch 9.0.0-0.20230310174237.16a2cd1.el9 delorean-component-clients 292 k
python3-novaclient noarch 1:18.3.0-0.20230313070857.85e4f08.el9 delorean-component-clients 219 k
python3-openstackclient noarch 6.2.0-0.20230310204751.05d34ff.el9 delorean-component-clients 1.2 M
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-client-config noarch 2.1.0-0.20230327143840.bc96c23.el9 delorean-component-clients 53 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-context noarch 5.1.1-0.20230310191714.7696282.el9 delorean-component-common 26 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-log noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 62 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-scciclient
python3-scciclient noarch 0.12.2-0.20230310124854.5627307.el9 delorean-component-baremetal 122 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-defusedxml noarch 0.7.1-3.el9 epel 50 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pysnmp noarch 4.4.12-6.el9s delorean-antelope-testing 656 k
python3-smi noarch 0.3.4-10.el9s delorean-antelope-testing 133 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
# python3-senlinclient
python3-senlinclient noarch 3.0.0-0.20230310184312.77b81a3.el9 delorean-component-clients 75 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-heatclient noarch 3.2.0-0.20230310183420.712739e.el9 delorean-component-clients 157 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-swiftclient noarch 4.2.0-0.20230310160202.7bd0951.el9 delorean-component-clients 162 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-shade
python3-shade noarch 1.33.0-0.20230310110946.e7c7f29.el9 delorean-component-clients 520 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-munch noarch 2.5.0-8.el9 epel 23 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-client-config noarch 2.1.0-0.20230327143840.bc96c23.el9 delorean-component-clients 53 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
# python3-swiftclient
python3-swiftclient noarch 4.2.0-0.20230310160202.7bd0951.el9 delorean-component-clients 162 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-tackerclient
python3-tackerclient noarch 1.13.0-0.20230310190412.e5bd58f.el9 delorean-component-clients 196 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-context noarch 5.1.1-0.20230310191714.7696282.el9 delorean-component-common 26 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-log noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 62 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-troveclient
python3-troveclient noarch 8.1.0-0.20230310161553.5a20908.el9 delorean-component-clients 343 k
python-openstackclient-lang noarch 6.2.0-0.20230310204751.05d34ff.el9 delorean-component-clients 56 k
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cinderclient noarch 9.3.0-0.20230310173716.f7a612e.el9 delorean-component-clients 218 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jaraco noarch 8.2.1-4.el9s delorean-antelope-testing 10 k
python3-jaraco-classes noarch 3.2.1-5.el9s delorean-antelope-testing 18 k
python3-jeepney noarch 0.8.0-3.el9s delorean-antelope-testing 345 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keyring noarch 23.9.3-1.el9s delorean-antelope-testing 81 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-keystoneclient noarch 1:5.1.0-0.20230310132725.4763cd8.el9 delorean-component-clients 237 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-mistralclient noarch 5.0.0-0.20230310153603.b94abb4.el9 delorean-component-clients 164 k
python3-more-itertools noarch 8.12.0-2.el9 epel 79 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-neutronclient noarch 9.0.0-0.20230310174237.16a2cd1.el9 delorean-component-clients 292 k
python3-novaclient noarch 1:18.3.0-0.20230313070857.85e4f08.el9 delorean-component-clients 219 k
python3-openstackclient noarch 6.2.0-0.20230310204751.05d34ff.el9 delorean-component-clients 1.2 M
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-client-config noarch 2.1.0-0.20230327143840.bc96c23.el9 delorean-component-clients 53 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k
python3-oslo-config noarch 2:9.1.1-0.20230310201801.515daab.el9 delorean-component-common 216 k
python3-oslo-context noarch 5.1.1-0.20230310191714.7696282.el9 delorean-component-common 26 k
python3-oslo-i18n noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 56 k
python3-oslo-log noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 62 k
python3-oslo-serialization noarch 5.1.1-0.20230310192707.b4be3a4.el9 delorean-component-common 32 k
python3-oslo-utils noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 77 k
python3-pbr noarch 5.11.1-1.el9s delorean-antelope-testing 140 k
python3-pyperclip noarch 1.8.2-2.el9s delorean-antelope-testing 28 k
python3-requestsexceptions noarch 1.4.0-0.20230310103434.d7ac0ff.el9 delorean-component-common 15 k
python3-rfc3986 noarch 1.5.0-1.el9s delorean-antelope-testing 50 k
python3-secretstorage noarch 3.3.2-1.el9 epel 35 k
python3-simplejson x86_64 3.17.6-2.el9s delorean-antelope-testing 264 k
python3-stevedore noarch 5.0.0-0.20230310155252.c4acc56.el9 delorean-component-clients 67 k
python3-swiftclient noarch 4.2.0-0.20230310160202.7bd0951.el9 delorean-component-clients 162 k
python3-wrapt x86_64 1.14.1-1.el9s delorean-antelope-testing 57 k
python3-zipp noarch 3.6.0-1.el9s delorean-antelope-testing 16 k
# python3-vitrageclient
python3-vitrageclient noarch 4.7.0-0.20230310185114.b6db531.el9 delorean-component-clients 71 k
SuperLU x86_64 5.3.0-2.el9 epel 182 k
armadillo x86_64 10.8.2-4.el9 epel 35 k
arpack x86_64 3.8.0-4.el9 epel 199 k
blosc x86_64 1.21.2-1.el9 epel 54 k
cfitsio x86_64 4.1.0-1.el9 epel 590 k
freexl x86_64 1.0.6-15.el9 epel 35 k
gdal-libs x86_64 3.4.0-2.el9 epel 8.5 M
geos x86_64 3.10.1-1.el9 epel 957 k
hdf-libs x86_64 4.2.15-7.el9 epel 294 k
hdf5 x86_64 1.12.1-7.el9.1 epel 2.2 M
libaec x86_64 1.0.6-1.el9 epel 41 k
libdap x86_64 3.20.10-1.el9 epel 677 k
libgeotiff x86_64 1.7.1-3.el9 epel 105 k
libgta x86_64 1.2.1-7.el9 epel 36 k
libimagequant x86_64 2.17.0-1.el9 epel 62 k
libkml x86_64 1.3.0-41.el9 epel 343 k
libraqm x86_64 0.8.0-1.el9 epel 19 k
librttopo x86_64 1.1.0-9.el9 epel 208 k
libspatialite x86_64 5.0.1-17.el9 epel 3.8 M
minizip x86_64 3.0.2-6.el9 epel 70 k
netcdf x86_64 4.8.1-2.el9 epel 731 k
ogdi x86_64 4.1.0-7.el9 epel 236 k
proj x86_64 8.2.0-1.el9 epel 2.5 M
python-oslo-i18n-lang noarch 6.0.0-0.20230418095801.03605c2.el9 delorean-component-common 13 k
python-oslo-log-lang noarch 5.0.0-0.20230310124307.6401da7.el9 delorean-component-common 12 k
python-oslo-utils-lang noarch 6.1.0-0.20230310140524.d49d594.el9 delorean-component-common 12 k
python-vitrageclient-bash-completion noarch 4.7.0-0.20230310185114.b6db531.el9 delorean-component-clients 11 k
python3-Bottleneck x86_64 1.3.2-7.el9 epel 131 k
python3-autopage noarch 0.5.1-1.el9s delorean-antelope-testing 58 k
python3-cliff noarch 4.2.0-0.20230310143452.fb9a3a9.el9 delorean-component-common 94 k
python3-cmd2 noarch 2.4.2-1.el9s delorean-antelope-testing 303 k
python3-cycler noarch 0.11.0-7.el9 epel 19 k
python3-debtcollector noarch 2.5.0-0.20230310120453.a6b46c5.el9 delorean-component-common 31 k
python3-dogpile-cache noarch 1.2.0-2.el9 epel 88 k
python3-importlib-metadata noarch 4.12.0-2.el9s delorean-antelope-testing 44 k
python3-iso8601 noarch 1.1.0-1.el9s delorean-antelope-testing 23 k
python3-jmespath noarch 1.0.1-1.el9s delorean-antelope-testing 45 k
python3-keystoneauth1 noarch 5.1.2-0.20230310152442.6ee21bd.el9 delorean-component-security 411 k
python3-kiwisolver x86_64 1.4.1-1.el9 epel 65 k
python3-markupsafe x86_64 2.1.1-4.el9s delorean-antelope-testing 27 k
python3-matplotlib-data noarch 3.4.3-3.el9 epel 502 k
python3-matplotlib-data-fonts noarch 3.4.3-3.el9 epel 2.3 M
python3-matplotlib-tk x86_64 3.4.3-3.el9 epel 35 k
python3-msgpack x86_64 1.0.4-3.el9s delorean-antelope-testing 85 k
python3-numexpr x86_64 2.8.4-1.el9 epel 137 k
python3-olefile noarch 0.46-15.el9 epel 56 k
python3-openstacksdk noarch 1.0.1-0.20230310162207.3876f3f.el9 delorean-component-clients 811 k
python3-os-service-types noarch 1.7.0-0.20230310110132.0b2f473.el9 delorean-component-clients 36 k
python3-osc-lib noarch 2.7.0-0.20230310134920.58ff270.el9 delorean-component-clients 76 k