This repository has been archived by the owner on Feb 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
violations.txt
11241 lines (11237 loc) · 554 KB
/
violations.txt
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
Report generated on: 2022-11-17 18:46:59.745497
Total repositories processed: 2958
Stats:
Repositories with violations: 2281
Violations types detected: 26
Total violations: 4461
Per repository violations:
Aiosmtplib (4)
ERROR: repo name does not match the package source name; repo name=Aiosmtplib, src name=aiosmtplib
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.1.6-2, missing tag=debian/1.1.6-2
WARNING: pyproject.toml detected, but package not build via PEP517 tools
Depthcharge Tools (4)
ERROR: repo name does not match the package source name; repo name=Depthcharge Tools, src name=depthcharge-tools
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
Djongo (3)
ERROR: no pristine-tar branch; available branches=['master', 'upstream']
ERROR: repo name does not match the package source name; repo name=Djongo, src name=djongo
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
Domdf Python Tools (5)
ERROR: repo name does not match the package source name; repo name=Domdf Python Tools , src name=domdf-python-tools
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
Easydict (4)
ERROR: repo name does not match the package source name; repo name=Easydict, src name=easydict
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.9-1, missing tag=debian/1.9-1
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=1.9-1
Flake8 Blind Except (1)
ERROR: repo name does not match the package source name; repo name=Flake8 Blind Except, src name=flake8-blind-except
Flake8 Deprecated (1)
ERROR: repo name does not match the package source name; repo name=Flake8 Deprecated, src name=flake8-deprecated
Flake8 Import Order (1)
ERROR: repo name does not match the package source name; repo name=Flake8 Import Order, src name=flake8-import-order
Flake8 Quotes (1)
ERROR: repo name does not match the package source name; repo name=Flake8 Quotes, src name=flake8-quotes
Funing (10)
ERROR: no valid Debian master branch; available branches=['debian/main', 'pristine-tar', 'upstream']
ERROR: repo name does not match the package source name; repo name=Funing, src name=funing
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
ERROR: Vcs-Browser field is missing from debian/control
ERROR: Vcs-Git field is missing from debian/control
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
Geojson2vt (2)
ERROR: repo name does not match the package source name; repo name=Geojson2vt, src name=geojson2vt
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
HSMWiz (2)
ERROR: repo name does not match the package source name; repo name=HSMWiz, src name=hsmwiz
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.0.2-2, missing tag=debian/0.0.2-2
JaroWinkler (1)
ERROR: appears to be an empty repository
Jc (1)
ERROR: repo name does not match the package source name; repo name=Jc, src name=jc
Linkchecker (7)
ERROR: no valid Debian master branch; available branches=['debian']
ERROR: no upstream branch; available branches=['debian']
ERROR: no pristine-tar branch; available branches=['debian']
ERROR: repo name does not match the package source name; repo name=Linkchecker, src name=linkchecker
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=10.1.0-1, missing tag=upstream/10.1.0
Metakernel (1)
ERROR: repo name does not match the package source name; repo name=Metakernel, src name=metakernel
Misk (6)
ERROR: no valid Debian master branch; available branches=['debian/main', 'pristine-tar', 'upstream']
ERROR: repo name does not match the package source name; repo name=Misk, src name=misk
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
Nicotine (2)
ERROR: repo name does not match the package source name; repo name=Nicotine, src name=nicotine
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
Openapi Spec Validator (2)
ERROR: repo name does not match the package source name; repo name=Openapi Spec Validator, src name=openapi-spec-validator
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
Pinball Table Gnu (9)
ERROR: no upstream branch; available branches=['debian/master', 'init/master', 'master', 'sandbox/rzr/gnu/master']
ERROR: no pristine-tar branch; available branches=['debian/master', 'init/master', 'master', 'sandbox/rzr/gnu/master']
ERROR: repo name does not match the package source name; repo name=Pinball Table Gnu, src name=pinball-table-gnu
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
ERROR: Vcs-Browser field doesnt match the repo web URL; Vcs-Browser=https://github.com/rzr/pinball-table-gnu/tree/debian/master, repo web URL=https://salsa.debian.org/python-team/packages/pinball-table-gnu
ERROR: Vcs-Git field doesnt match the repo git URL; Vcs-Git=https://github.com/rzr/pinball-table-gnu.git#debian/master, repo git URL=https://salsa.debian.org/python-team/packages/pinball-table-gnu.git
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.0.20200601-2, missing tag=debian/0.0.20200601-2
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=0.0.20200601-2
PyPartPicker (5)
ERROR: repo name does not match the package source name; repo name=PyPartPicker, src name=python-pypartpicker
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.9.2-1, missing tag=debian/1.9.2-1
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
PyQt-builder (3)
ERROR: repo name does not match the package source name; repo name=PyQt-builder, src name=pyqt-builder
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: pyproject.toml detected, but package not build via PEP517 tools
Pygubu (2)
ERROR: no valid Debian master branch; available branches=['debian/main', 'pristine-tar', 'upstream']
ERROR: theres no debian/ directory in the default branch, which should contain a development branch, see DEP-14; all other checks are skipped; default branch=debian/main
Pyproject Examples (9)
ERROR: no valid Debian master branch; available branches=['debian/main', 'pristine-tar', 'upstream']
ERROR: repo name does not match the package source name; repo name=Pyproject Examples, src name=pyproject-examples
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
WARNING: pyproject.toml detected, but package not build via PEP517 tools
Python Asyncache (3)
ERROR: repo name does not match the package source name; repo name=Python Asyncache, src name=python-asyncache
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
Python Djangorestframework Flex Fields (2)
ERROR: repo name does not match the package source name; repo name=Python Djangorestframework Flex Fields, src name=python-djangorestframework-flex-fields
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
Python Docstring To Markdown (4)
ERROR: repo name does not match the package source name; repo name=Python Docstring To Markdown, src name=python-docstring-to-markdown
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
Python FsQuota (4)
ERROR: repo name does not match the package source name; repo name=Python FsQuota, src name=python-fsquota
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
Python Language Server (3)
ERROR: repo name does not match the package source name; repo name=Python Language Server, src name=python-language-server
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
Python Mmh3 (2)
ERROR: repo name does not match the package source name; repo name=Python Mmh3, src name=python-mmh3
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
Python Openqa Client (2)
ERROR: repo name does not match the package source name; repo name=Python Openqa Client, src name=python-openqa-client
WARNING: pyproject.toml detected, but package not build via PEP517 tools
Python Railroad Diagrams (2)
ERROR: repo name does not match the package source name; repo name=Python Railroad Diagrams, src name=python-railroad-diagrams
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
Python Tr (7)
ERROR: no pristine-tar branch; available branches=['debian/master', 'upstream']
ERROR: repo name does not match the package source name; repo name=Python Tr, src name=python-tr
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.1+git20161102.e74d4bd-1.1, missing tag=debian/0.1+git20161102.e74d4bd-1.1
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=0.1+git20161102.e74d4bd-1.1
Qtsass (2)
ERROR: no valid Debian master branch; available branches=['debian/main', 'pristine-tar', 'upstream']
ERROR: repo name does not match the package source name; repo name=Qtsass, src name=qtsass
RapidFuzz C-API (1)
ERROR: appears to be an empty repository
SSDPy (6)
ERROR: repo name does not match the package source name; repo name=SSDPy, src name=python-ssdpy
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
WARNING: pyproject.toml detected, but package not build via PEP517 tools
Sphinx Notfound Page (2)
ERROR: repo name does not match the package source name; repo name=Sphinx Notfound Page, src name=sphinx-notfound-page
WARNING: pyproject.toml detected, but package not build via PEP517 tools
Sphinx Remove Toctrees (6)
ERROR: no valid Debian master branch; available branches=['debian/main', 'pristine-tar', 'upstream']
ERROR: repo name does not match the package source name; repo name=Sphinx Remove Toctrees, src name=sphinx-remove-toctrees
ERROR: Vcs-Browser field doesnt match the repo web URL; Vcs-Browser=https://salsa.debian.org/python-team/packages/sphinx-remove-toctree, repo web URL=https://salsa.debian.org/python-team/packages/sphinx-remove-toctrees
ERROR: Vcs-Git field doesnt match the repo git URL; Vcs-Git=https://salsa.debian.org/python-team/packages/sphinx-remove-toctree.git, repo git URL=https://salsa.debian.org/python-team/packages/sphinx-remove-toctrees.git
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.0.3-2, missing tag=debian/0.0.3-2
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.0.3-2, missing tag=upstream/0.0.3
Sphinx Sitemap (2)
ERROR: repo name does not match the package source name; repo name=Sphinx Sitemap, src name=sphinx-sitemap
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
Sphinxcontrib Ditaa (7)
ERROR: no valid Debian master branch; available branches=['debian/main', 'pristine-tar', 'upstream']
ERROR: repo name does not match the package source name; repo name=Sphinxcontrib Ditaa, src name=sphinxcontrib-ditaa
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
Sphinxcontrib Mermaid (4)
ERROR: repo name does not match the package source name; repo name=Sphinxcontrib Mermaid, src name=sphinxcontrib-mermaid
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
Tkcalendar (5)
ERROR: no valid Debian master branch; available branches=['debian/main', 'pristine-tar', 'upstream']
ERROR: repo name does not match the package source name; repo name=Tkcalendar, src name=tkcalendar
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
Transforms3d (1)
ERROR: repo name does not match the package source name; repo name=Transforms3d, src name=transforms3d
aafigure (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
adapt-parser (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
advocate (3)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
afew (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=3.0.1-4, missing tag=debian/3.0.1-4
aiodogstatsd (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
aiohttp-apispec (6)
ERROR: no pristine-tar branch; available branches=['main', 'master', 'upstream']
ERROR: repo name does not match the package source name; repo name=aiohttp-apispec, src name=python-aiohttp-apispec
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=3.0.0~b2+ds1-2, missing tag=debian/3.0.0~b2+ds1-2
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=3.0.0~b2+ds1-2, missing tag=upstream/3.0.0~b2+ds1
WARNING: pyproject.toml detected, but package not build via PEP517 tools
aiohttp-cors (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
aiohttp-debugtoolbar (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
aiohttp-jinja2 (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
aiohttp-jwt (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
aiohttp-mako (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
aiohttp-remotes (2)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
WARNING: pyproject.toml detected, but package not build via PEP517 tools
aiohttp-retry (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
aiohttp-wsgi (3)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.10.0-1, missing tag=debian/0.10.0-1
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: aiohttp-wsgi_0.10.0.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: aiohttp-wsgi_0.10.0.orig.tar.*.id
aiomysql (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
aiopg (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
aioredis (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
aiorpcx (1)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.22.1-2, missing tag=debian/0.22.1-2
aiorwlock (6)
ERROR: DPT is not in Maintainer or Uploaders fields
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.0.0-0.2, missing tag=debian/1.0.0-0.2
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=1.0.0-0.2, missing tag=upstream/1.0.0
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=1.0.0-0.2
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: aiorwlock_1.0.0.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: aiorwlock_1.0.0.orig.tar.*.id
aiosignal (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: pyproject.toml detected, but package not build via PEP517 tools
aiotask-context (3)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
aiowsgi (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
aioxmlrpc (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
aiozmq (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
airr (4)
ERROR: repo name does not match the package source name; repo name=airr, src name=python-airr
ERROR: DPT is not in Maintainer or Uploaders fields
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.3.1-1, missing tag=debian/1.3.1-1
alembic (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
alienfeed (4)
ERROR: no upstream branch; available branches=['debian/master', 'svn']
ERROR: no pristine-tar branch; available branches=['debian/master', 'svn']
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
alot (3)
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.10-1, missing tag=upstream/0.10
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: alot_0.10.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: alot_0.10.orig.tar.*.id
androguard (2)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=3.4.0~a1-6, missing tag=debian/3.4.0~a1-6
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=3.4.0~a1-6, missing tag=upstream/3.4.0~a1
anosql (1)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.0.1-3, missing tag=debian/1.0.1-3
ansi (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ansible-lint (3)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
ansicolors (4)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/sid', 'pristine-tar', 'upstream']
ERROR: repo name does not match the package source name; repo name=ansicolors, src name=python-ansicolors
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.1.8-4, missing tag=debian/1.1.8-4
antlr4-python3-runtime (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
apachedex (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
api-hour (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
apipkg (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
apispec (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
appdirs (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
apprise (3)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
archivemail (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
archmage (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1:0.4.2.1-2, missing tag=debian/1:0.4.2.1-2
arcp (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
argparse (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
argvalidate (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
asn1crypto (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
asn1crypto-tests (1)
ERROR: appears to be an empty repository
astral (3)
WARNING: Uploaders is missing from debian/control, that doesnt seem right
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=1.6.1-3, missing tag=upstream/1.6.1
astroid (6)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.16-2+b1, missing tag=debian/0.16-2+b1
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.16-2+b1, missing tag=upstream/0.16
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=0.16-2+b1
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: astroid_0.16.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: astroid_0.16.orig.tar.*.id
WARNING: pyproject.toml detected, but package not build via PEP517 tools
astroid2 (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
asyncpg (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: pyproject.toml detected, but package not build via PEP517 tools
atheist (2)
ERROR: debian/watch is missing
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
audioread (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
authheaders (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
authprogs (3)
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
autoflake (6)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: autoflake_1.7.7.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: autoflake_1.7.7.orig.tar.*.id
WARNING: pyproject.toml detected, but package not build via PEP517 tools
autoimport (9)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.3.2-1, missing tag=debian/1.3.2-1
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=1.3.2-1, missing tag=upstream/1.3.2
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=1.3.2-1
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: autoimport_1.3.2.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: autoimport_1.3.2.orig.tar.*.id
WARNING: pyproject.toml detected, but package not build via PEP517 tools
automat (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
automx2 (11)
ERROR: no upstream branch; available branches=['debian/latest']
ERROR: no pristine-tar branch; available branches=['debian/latest']
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
ERROR: Vcs-Browser field doesnt match the repo web URL; Vcs-Browser=https://salsa.debian.org/python-team/automx2, repo web URL=https://salsa.debian.org/python-team/packages/automx2
ERROR: Vcs-Git field doesnt match the repo git URL; Vcs-Git=https://salsa.debian.org/python-team/automx2.git, repo git URL=https://salsa.debian.org/python-team/packages/automx2.git
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
autopep8 (2)
ERROR: no pristine-tar branch; available branches=['master', 'upstream']
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
autosuspend (3)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=4.2.0-1.1, missing tag=debian/4.2.0-1.1
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=4.2.0-1.1
WARNING: pyproject.toml detected, but package not build via PEP517 tools
awesomeversion (6)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: awesomeversion_22.9.0.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: awesomeversion_22.9.0.orig.tar.*.id
WARNING: pyproject.toml detected, but package not build via PEP517 tools
azure-cli (2)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/bullseye-backports', 'debian/sid', 'pristine-tar', 'upstream']
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=2.42.0-1, missing tag=upstream/2.42.0
azure-cosmos-python (2)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/sid', 'pristine-tar', 'upstream']
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=3.1.1-5, missing tag=upstream/3.1.1
azure-cosmos-table-python (3)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/sid', 'pristine-tar', 'upstream']
ERROR: debian/watch is missing
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=1.0.5+git20191025-6, missing tag=upstream/1.0.5+git20191025
azure-data-lake-store-python (2)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/sid', 'pristine-tar', 'upstream']
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.0.52-2, missing tag=upstream/0.0.52
azure-devops-cli-extension (2)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/bullseye-backports', 'debian/sid', 'newver', 'pristine-tar', 'upstream']
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.24.0-1, missing tag=upstream/0.24.0
azure-functions-devops-build (3)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/sid', 'pristine-tar', 'upstream']
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.0.22-5, missing tag=upstream/0.0.22
azure-kusto-python (3)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/bullseye-backports', 'debian/buster-backports', 'debian/sid', 'pristine-tar', 'upstream']
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=3.1.3-2, missing tag=upstream/3.1.3
WARNING: pyproject.toml detected, but package not build via PEP517 tools
azure-multiapi-storage-python (3)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/bullseye-backports', 'debian/sid', 'pristine-tar', 'upstream']
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.10.0-1, missing tag=upstream/0.10.0
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=0.10.0-1
azure-uamqp-python (2)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/sid', 'pristine-tar', 'upstream']
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=1.5.3-1, missing tag=upstream/1.5.3
bCNC (2)
ERROR: repo name does not match the package source name; repo name=bCNC, src name=bcnc
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
babelfish (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
babiloo (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
backoff (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: pyproject.toml detected, but package not build via PEP517 tools
backports.functools-lru-cache (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
backports.shutil-which (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
backports.ssl-match-hostname (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
bdist-nsi (3)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.1.5-4, missing tag=debian/0.1.5-4
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.1.5-4, missing tag=upstream/0.1.5
beanbag-docutils (3)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
beancount (1)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/sid', 'pristine-tar', 'upstream']
beanstalkc (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
beautifulsoup4 (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
beets (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
behave (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
belier (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
bepasty (3)
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
bernhard (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
betamax (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
bibtexparser (1)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.1.0+ds-5, missing tag=debian/1.1.0+ds-5
bidict (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
bitstruct (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
bjsonrpc (2)
ERROR: debian/watch is missing
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
blea (1)
ERROR: appears to be an empty repository
bleak (6)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: bleak_0.19.4.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: bleak_0.19.4.orig.tar.*.id
WARNING: pyproject.toml detected, but package not build via PEP517 tools
blessings (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
blinker (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.4+dfsg1-0.5, missing tag=debian/1.4+dfsg1-0.5
blist (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
blivet (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
bloscpack (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
bluewho (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
bond (3)
ERROR: repo name does not match the package source name; repo name=bond, src name=python-bond
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
boolean.py (2)
ERROR: no pristine-tar branch; available branches=['debian/bullseye-backports', 'debian/latest', 'upstream/latest']
ERROR: repo name does not match the package source name; repo name=boolean.py, src name=python-boolean.py
bootstrap-flask (4)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
bottleneck (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: pyproject.toml detected, but package not build via PEP517 tools
bqplot (3)
ERROR: Vcs-Browser field is missing from debian/control
ERROR: Vcs-Git field is missing from debian/control
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
braceexpand (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
breadability (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
breathe (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
brython (5)
ERROR: debian/watch is missing
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
bugz (5)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.13-3, missing tag=debian/0.13-3
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.13-3, missing tag=upstream/0.13
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=0.13-3
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: bugz_0.13.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: bugz_0.13.orig.tar.*.id
bumblebee-status (3)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
bunch (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
bundlewrap (2)
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: bundlewrap_4.13.6.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: bundlewrap_4.13.6.orig.tar.*.id
cachy (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: pyproject.toml detected, but package not build via PEP517 tools
canto (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
case (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.5.3+dfsg-5, missing tag=debian/1.5.3+dfsg-5
catwalk (4)
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
cbor2 (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
cefpython (1)
ERROR: appears to be an empty repository
celery (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: pyproject.toml detected, but package not build via PEP517 tools
celery-batches (2)
ERROR: debian/watch is missing
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
celery-haystack (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
celery-haystack-ng (3)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.20.post2-1.1, missing tag=debian/0.20.post2-1.1
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=0.20.post2-1.1
celery-progress (3)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.1.1-1.1, missing tag=debian/0.1.1-1.1
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=0.1.1-1.1
certbot-dns-freenom (5)
ERROR: repo name does not match the package source name; repo name=certbot-dns-freenom, src name=python-certbot-dns-freenom
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
certipy (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
cf-python (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
chardet (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
chargebee-python (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.6.6-3, missing tag=debian/1.6.6-3
check-manifest (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
checkbox-ng (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
checkbox-support (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
cherrypy3 (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
circuits (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
citeproc-py (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
clikit (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
cloud-sptheme (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
cloudpickle (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=2.0.0-1
clustershell (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.8.4-2, missing tag=debian/1.8.4-2
cmdtest (1)
ERROR: debian/watch is missing
codespell (2)
ERROR: no pristine-tar branch; available branches=['master', 'upstream']
WARNING: pyproject.toml detected, but package not build via PEP517 tools
codicefiscale (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
cognitive-complexity (3)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
coherence (3)
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
colorclass (5)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=2.2.2-1, missing tag=debian/2.2.2-1
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=2.2.2-1, missing tag=upstream/2.2.2
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=2.2.2-1
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: colorclass_2.2.2.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: colorclass_2.2.2.orig.tar.*.id
colorspacious (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
colorzero (1)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=2.0-2, missing tag=debian/2.0-2
commit-helper (3)
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
commoncode (7)
ERROR: no upstream branch; available branches=['debian/master']
ERROR: no pristine-tar branch; available branches=['debian/master']
ERROR: repo name does not match the package source name; repo name=commoncode, src name=python-commoncode
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
ERROR: debian/watch is missing
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
commonmark (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.9.1-4, missing tag=upstream/0.9.1
commonmark-bkrs (2)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.5.4+ds-6, missing tag=debian/0.5.4+ds-6
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.5.4+ds-6, missing tag=upstream/0.5.4+ds
concurrent-log-handler (1)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/sid', 'pristine-tar', 'upstream']
configargparse (2)
ERROR: repo name does not match the package source name; repo name=configargparse, src name=python-configargparse
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
confusable-homoglyphs (4)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
constantly (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
contextlib2 (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
convertall (5)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.8.0-1, missing tag=debian/0.8.0-1
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.8.0-1, missing tag=upstream/0.8.0
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=0.8.0-1
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: convertall_0.8.0.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: convertall_0.8.0.orig.tar.*.id
convertdate (2)
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=2.3.2-2, missing tag=upstream/2.3.2
WARNING: pyproject.toml detected, but package not build via PEP517 tools
coreapi (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=2.3.3-6, missing tag=debian/2.3.3-6
coreschema (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.0.4-5, missing tag=debian/0.0.4-5
cornice (1)
ERROR: appears to be an empty repository
cov-core (2)
WARNING: Uploaders is missing from debian/control, that doesnt seem right
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
cppimport (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
cppman (4)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=0.5.4+dfsg1-1
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: cppman_0.5.4+dfsg1.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: cppman_0.5.4+dfsg1.orig.tar.*.id
cppy (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=1.1.0-3, missing tag=upstream/1.1.0
crashtest (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
creoleparser (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
crochet (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
crudini (2)
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: crudini_0.9.3.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: crudini_0.9.3.orig.tar.*.id
ctop (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
cubictemp (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
customidenticon (6)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.1.5-2, missing tag=debian/0.1.5-2
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=0.1.5-2
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
cwl-utils (4)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
cython (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
d2to1 (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
dacite (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
dasbus (1)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/bullseye-backports', 'debian/sid', 'pristine-tar', 'upstream']
dask-jobqueue (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
dask-sphinx-theme (3)
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
dask.distributed (2)
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=2022.02.0+ds.1-2, missing tag=debian/2022.02.0+ds.1-2
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=2022.02.0+ds.1-2, missing tag=upstream/2022.02.0+ds.1
dataclasses-json (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
datanommer.commands (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
datanommer.consumer (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
datanommer.models (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
dateparser (1)
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=1.1.2-1, missing tag=upstream/1.1.2
dbf (3)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.96.005-2, missing tag=debian/0.96.005-2
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=0.96.005-2
dbus-fast (5)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: dbus-fast_1.72.0.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: dbus-fast_1.72.0.orig.tar.*.id
deap (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
debdate (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
debugpy (1)
WARNING: email on push integration missing
decoratortools (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
defusedxml (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
derpconf (1)
ERROR: no pristine-tar branch; available branches=['master', 'upstream']
devpi-common (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
devpi-server (3)
ERROR: no pristine-tar branch; available branches=['debian/master', 'upstream']
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
diamond (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
didjvu (3)
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
dill (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.3.4-2, missing tag=debian/0.3.4-2
dirhash (2)
ERROR: repo name does not match the package source name; repo name=dirhash, src name=python-dirhash
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
dirtbike (3)
ERROR: Vcs-Git field doesnt match the repo git URL; Vcs-Git=https://salsa.debian.org/python-team/applications/dirtbike.git, repo git URL=https://salsa.debian.org/python-team/packages/dirtbike.git
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
dirty-equals (6)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: dirty-equals_0.5.0.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: dirty-equals_0.5.0.orig.tar.*.id
WARNING: pyproject.toml detected, but package not build via PEP517 tools
discodos (4)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/sid', 'upstream']
ERROR: no pristine-tar branch; available branches=['debian/sid', 'upstream']
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.0~rc2-2, missing tag=debian/1.0~rc2-2
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=1.0~rc2-2, missing tag=upstream/1.0~rc2
discord.py (5)
ERROR: repo name does not match the package source name; repo name=discord.py, src name=python-discord
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
WARNING: pyproject.toml detected, but package not build via PEP517 tools
disper (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
distance (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-adminaudit (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-ajax-selects (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-any-js (4)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.1-1.1, missing tag=debian/1.1-1.1
ERROR: debian/changelog doesnt contain an entry for the version in sid; sid version=1.1-1.1
WARNING: pyproject.toml detected, but package not build via PEP517 tools
django-anymail (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-app-plugins (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-auth-ldap (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: pyproject.toml detected, but package not build via PEP517 tools
django-auto-one-to-one (1)
WARNING: uncommon debian master branch (DEP-14); available branches=['debian/sid', 'pristine-tar', 'upstream']
django-background-tasks (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-bitfield (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-bleach (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: pyproject.toml detected, but package not build via PEP517 tools
django-cachalot (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-cache-memoize (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-celery (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-celery-email (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-celery-transactions (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-ckeditor (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-cleanup (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=5.2.0-2, missing tag=debian/5.2.0-2
django-colorful (5)
ERROR: no valid Debian master branch; available branches=['svn']
ERROR: no upstream branch; available branches=['svn']
ERROR: no pristine-tar branch; available branches=['svn']
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-conneg (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-cors-headers (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
django-countries (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-cte (5)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: django-cte_1.2.1.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: django-cte_1.2.1.orig.tar.*.id
django-dbbackup (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-downloadview (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-dynamic-preferences (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-environ (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-favicon-plus-reloaded (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-filter (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
django-floppyforms (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-graphiql-debug-toolbar (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
django-guardian (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-haystack (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
django-haystack-redis (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=0.0.1-2, missing tag=debian/0.0.1-2
django-hijack (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-housekeeping (2)
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: django-housekeeping_1.2.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: django-housekeeping_1.2.orig.tar.*.id
django-html-sanitizer (2)
ERROR: no upstream branch; available branches=['master', 'pristine-tar', 'unstable', 'upstream-unstable']
ERROR: theres no debian/ directory in the default branch, which should contain a development branch, see DEP-14; all other checks are skipped; default branch=master
django-hvad (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-impersonate (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-invitations (6)
WARNING: tagpending webhook missing
WARNING: IRC notification (aka KGB) webhook missing
WARNING: email on push integration missing
ERROR: pristine-tar branch doesnt contain .delta for the current version; expected: django-invitations_2.0.0.orig.tar.*.delta
ERROR: pristine-tar branch doesnt contain .id for the current version; expected: django-invitations_2.0.0.orig.tar.*.id
WARNING: pyproject.toml detected, but package not build via PEP517 tools
django-ipware (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
django-js-reverse (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-ldapdb (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-macaddress (2)
ERROR: no valid Debian master branch; available branches=['debian', 'pristine-tar', 'upstream']
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-maintenance-mode (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-maintenancemode (1)
ERROR: there's no upstream tag in the repo corresponding to the sid version; sid version=0.11.7+git221001-1, missing tag=upstream/0.11.7+git221001
django-markupfield (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-material (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-memoize (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=2.2.0+dfsg-3, missing tag=debian/2.2.0+dfsg-3
django-menu-generator-ng (2)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
ERROR: there's no debian tag in the repo corresponding to the sid version; sid version=1.2.3-1, missing tag=debian/1.2.3-1
django-modeltranslation (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
django-notification (2)
WARNING: Uploaders is missing from debian/control, that doesnt seem right
ERROR: DPT is not in Maintainer or Uploaders fields
django-oauth-toolkit (1)
WARNING: pyproject.toml detected, but package not build via PEP517 tools
django-openid-auth (1)
WARNING: unable to find a version in Sid: is this still in NEW/experimental-only?
django-organizations (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-otp-yubikey (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html
django-pagination (1)
WARNING: debian/watch still uses PyPI to track new releases, https://lists.debian.org/debian-python/2021/06/msg00026.html