-
Notifications
You must be signed in to change notification settings - Fork 63
/
dev-requirements.txt
1204 lines (1128 loc) · 46.1 KB
/
dev-requirements.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
setuptools
wheel
# @modified 20160820 - Issue #23 Test dependency updates
# All current versions verified as of 20160820 - https://github.com/earthgecko/skyline/issues/21
# @modified 20180105 - Task #2272: update deps for luminosity branch
#redis==2.10.5
# @modified 20190411 - Task #2824: Test redis-py upgrade
# Task #2926: Update dependencies
#redis==2.10.6
#hiredis==0.2.0
# @modified 20190822 - Task #3060: Update dependencies
#redis==3.2.1
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#redis==3.3.8
#hiredis==1.0.0
# @modified 20211220 - Task #4344: Update dependencies
#redis==3.5.3
# @modified 20220110 - Task #4362: snyk - numpy and pillow updates
#redis==4.0.2
# @modified 20220422 - Task #4452: Update dependencies
#redis==4.1.0
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#redis==4.2.2
# @modified 20230331 - Support #4884: Update dependencies - redis-py - CVE-2023-28858
#redis==4.4.0
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#redis==4.4.4
redis==4.6.0
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#hiredis==1.0.1
# @modified 20211220 - Task #4344: Update dependencies
#hiredis==1.1.0
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#hiredis==2.0.0
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#hiredis==2.1.0
hiredis==2.2.3
## python-daemon and deps
# @modified 20161224 - Task #1758: Update deps in Ionosphere
#docutils==0.12
# @modified 20170809 - Task #2138: Update deps
#docutils==0.13.1
# @modified 20190822 - Task #3060: Update dependencies
#docutils==0.14
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#docutils==0.15.2
# @modified 20220110 - Task #4362: snyk - numpy and pillow updates
#docutils==0.16
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#docutils==0.18.1
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#docutils==0.19
docutils==0.20.1
lockfile==0.12.2
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#python-daemon==2.1.1
# @modified 20180910 - Task #2588: Update dependencies
#python-daemon==2.1.2
# @modified 20190411 - Task #2926: Update dependencies
#python-daemon==2.2.0
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#python-daemon==2.2.3
# @modified 20211220 - Task #4344: Update dependencies
#python-daemon==2.2.4
python-daemon==2.3.0
## Flask and deps
# @modified 20190412 - Task #2926: Update dependencies
#itsdangerous==0.24
# @modified 20211220 - Task #4344: Update dependencies
#itsdangerous==1.1.0
# @modified 20220110 - Task #4362: snyk - numpy and pillow updates
#itsdangerous==2.0.0
# @modified 20220422 - Task #4452: Update dependencies
#itsdangerous==2.0.1
itsdangerous==2.1.2
# @modified 20170809 - Task #2138: Update deps
#Jinja2==2.8
#MarkupSafe==0.23
# @modified 20180105 - Task #2272: update deps for luminosity branch
#Jinja2==2.9.6
# @modified 20190411 - Task #2926: Update dependencies
#Jinja2==2.10
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#Jinja2==2.10.1
# @modified 20210202 - Task #3960: SNYK-PYTHON-JINJA2-1012994
#Jinja2==2.11.2
# @modified 20211220 - Task #4344: Update dependencies
#Jinja2==2.11.3
# @modified 20220422 - Task #4452: Update dependencies
#Jinja2==3.0.3
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#Jinja2==3.1.1
Jinja2==3.1.2
# @modified 20190412 - Task #2926: Update dependencies
#MarkupSafe==1.0
# @modified 20211220 - Task #4344: Update dependencies
#MarkupSafe==1.1.1
# @modified 20220422 - Task #4452: Update dependencies
#MarkupSafe==2.0.1
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#MarkupSafe==2.1.1
MarkupSafe==2.1.3
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#Werkzeug==0.11.10
# @modified 20170809 - Task #2138: Update deps
#Werkzeug==0.11.11
# @modified 20180105 - Task #2272: update deps for luminosity branch
#Werkzeug==0.12.2
# @modified 20190412 - Task #2926: Update dependencies
#Werkzeug==0.14.1
# @modified 20190529 - Task #3060: Update dependencies
#Werkzeug==0.15.2
# @modified 20190822 - Task #3060: Update dependencies
#Werkzeug==0.15.4
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#Werkzeug==0.15.5
# @modified 20211220 - Task #4344: Update dependencies
#Werkzeug==1.0.1
# @modified 20220422 - Task #4452: Update dependencies
#Werkzeug==2.0.2
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#Werkzeug==2.1.1
# @modified 20230331 - Support #4884: Update dependencies - redis-py - CVE-2023-28858
#Werkzeug==2.2.2
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#Werkzeug==2.2.3
Werkzeug==2.3.6
# @modified 20180105 - Task #2272: update deps for luminosity branch
#click==6.6
# @modified 20190412 - Task #2926: Update dependencies
#click==6.7
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#click==7.0
# @modified 20211220 - Task #4344: Update dependencies
#click==7.1.2
# @modified 20220422 - Task #4452: Update dependencies
#click==8.0.3
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#click==8.1.2
click==8.1.3
# @modified 20161224 - Task #1758: Update deps in Ionosphere
#Flask==0.11.1
# @modified 20170809 - Task #2138: Update deps
#Flask==0.12
# @modified 20180910 - Task #2588: Update dependencies
#Flask==0.12.2
# @modified 20190529 - Task #3060: Update dependencies
#Flask==1.0.2
# @modified 20190822 - Task #3060: Update dependencies
#Flask==1.0.3
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#Flask==1.1.1
# @modified 20211220 - Task #4344: Update dependencies
#Flask==1.1.2
# @modified 20220422 - Task #4452: Update dependencies
#Flask==2.0.2
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#Flask==2.1.1
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#Flask==2.2.2
Flask==2.3.2
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#simplejson==3.8.2
# @modified 20170809 - Task #2138: Update deps
#simplejson==3.10.0
# @modified 20180105 - Task #2272: update deps for luminosity branch
#simplejson==3.11.1
# @modified 20180910 - Task #2588: Update dependencies
#simplejson==3.13.2
# @modified 20200104 - Branch #3262: py3
#simplejson==3.16.0
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#simplejson==3.17.0
# @modified 20211220 - Task #4344: Update dependencies
#simplejson==3.17.2
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#simplejson==3.17.6
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#simplejson==3.18.0
simplejson==3.19.1
# @modified 20180105 - Task #2272: update deps for luminosity branch
#six==1.10.0
# @modified 20190412 - Task #2926: Update dependencies
#six==1.11.0
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#six==1.12.0
# @modified 20211220 - Task #4344: Update dependencies
#six==1.15.0
six==1.16.0
## unittest2 and deps
# @modified 20230110 - Task #4800: Deprecate unittest2
# Task #4778: v4.0.0 - update dependencies
# Use built in unittest, deprecated linecache2, traceback2, argparse and unittest2
# @modified 20230119 - Task #4800: Deprecate unittest2
# Task #4778: v4.0.0 - update dependencies
# argparse is left as it is required for pipdeptree
argparse==1.4.0
#linecache2==1.0.0
#traceback2==1.4.0
#unittest2==1.1.0
## mock and deps
funcsigs==1.0.2
# @modified 20170809 - Task #2138: Update deps
#pbr==1.10.0
# @modified 20180416 - Task #2272: update deps for luminosity branch
#pbr==3.1.1
# @modified 20180910 - Task #2588: Update dependencies
#pbr==4.0.2
# @modified 20190412 - Task #2926: Update dependencies
#pbr==4.2.0
# @modified 20190529 - Task #3060: Update dependencies
#pbr==5.1.3
# @modified 20190822 - Task #3060: Update dependencies
#pbr==5.2.0
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#pbr==5.4.2
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#pbr==5.4.5
# @modified 20211220 - Task #4344: Update dependencies
#pbr==5.5.1
# @modified 20220422 - Task #4452: Update dependencies
#pbr==5.8.0
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#pbr==5.8.1
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#pbr==5.11.0
pbr==5.11.1
# @modified 20190529 - Task #3060: Update dependencies
#mock==2.0.0
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#mock==3.0.5
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#mock==4.0.2
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#mock==4.0.3
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#mock==5.0.0
mock==5.0.2
# If python-2.6 is being used, distribute is probably still required
#distribute
## numpy and deps
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#numpy==1.11.1
# @modified 20161224 - Task #1758: Update deps in Ionosphere
#numpy==1.11.2
# @modified 20170809 - Task #2138: Update deps
#numpy==1.11.3
# @modified 20180105 - Task #2272: update deps for luminosity branch
#numpy==1.13.1
# @modified 20180416 - Task #2272: update deps for luminosity branch
# @modified 20180416 - Task #2272: update deps for luminosity branch
# Bug #2274: pandas-0.22.0 and numpy
# Downgrade back to pandas=0.20.3
#numpy==1.13.3
#numpy==1.14.2
# @modified 20180910 - Task #2588: Update dependencies
# From numpy==1.13.3 above, 1.14.2 was not implemented due to #2274
# @modified 20190411 - Task #2926: Update dependencies
#numpy==1.15.1
# @modified 20190426 - Task #2964: Update dependencies
# Mitigate CVE-2019-6446 and SNYK-PYTHON-NUMPY-73513
#numpy==1.16.2
# @modified 20190529 - Task #3060: Update dependencies
#numpy==1.16.3
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#numpy==1.16.4
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#numpy==1.19.0
# @modified 20211220 - Task #4344: Update dependencies
#numpy==1.19.4
# @modified 20220110 - Task #4362: snyk - numpy and pillow updates
#numpy==1.21.5
# @modified 20220217 - Task #4452: Update dependencies
#numpy==1.22.0
# @modified 20220422 - Task #4452: Update dependencies
#numpy==1.22.0
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
# Cannot move to 1.24.1 because numba 0.56.4 depends on numpy<1.24 and >=1.18
# so fix to 1.23.5, but cannot use 1.23.5 because there is a statsmodels dep on
# scipy to 1.7.3 due to Bug #4346: statsmodel 0.13.1 error
#numpy==1.22.3
#numpy==1.23.5
# @modified 20230120 - Task #4778: v4.0.0 - update dependencies
# Branch #4456: v0.19.1 (earthgecko-tsfresh)
# Updating statsmodels, scipy and numpy now tsfresh is updating to v0.19.1
#numpy==1.22.4
numpy==1.23.5
## scipy and deps
# @modified 20160820 - Issue #23 Test dependency updates
#scipy==0.17.1
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#scipy==0.18.0
# @modified 20170809 - Task #2138: Update deps
#scipy==0.18.1
# @modified 20180105 - Task #2272: update deps for luminosity branch
#scipy==0.19.1
# @modified 20180416 - Task #2272: update deps for luminosity branch
#scipy==1.0.0
# @modified 20180910 - Task #2588: Update dependencies
#scipy==1.0.1
# @modified 20190412 - Task #2926: Update dependencies
#scipy==1.1.0
# @modified 20190822 - Task #3060: Update dependencies
#scipy==1.2.1
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#scipy==1.2.2
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#scipy==1.5.0
# @modified 20211220 - Task #4344: Update dependencies
#scipy==1.5.4
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
# Cannot update to 1.9.3 due to statsmodels dep on scipy to 1.7.3 because of
# Bug #4346: statsmodel 0.13.1 error
#scipy==1.7.3
#scipy==1.9.3
# @modified 20230120 - Task #4778: v4.0.0 - update dependencies
# Branch #4456: v0.19.1 (earthgecko-tsfresh)
# Updating statsmodels, scipy and numpy now tsfresh is updating to v0.19.1
# scipy==1.7.3
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#scipy==1.10.0
scipy==1.10.1
## matplotlib and co
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#python-dateutil==2.5.3
# @modified 20170809 - Task #2138: Update deps
#python-dateutil==2.6.0
# @modified 20180416 - Task #2272: update deps for luminosity branch
#python-dateutil==2.6.1
# @modified 20180910 - Task #2588: Update dependencies
#python-dateutil==2.7.2
# @modified 20190412 - Task #2926: Update dependencies
#python-dateutil==2.7.3
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#python-dateutil==2.8.0
# @modified 20211220 - Task #4344: Update dependencies
#python-dateutil==2.8.1
python-dateutil==2.8.2
# @modified 20160820 - Issue #23 Test dependency updates
#pytz==2016.4
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#pytz==2016.6.1
# @modified 20161224 - Task #1758: Update deps in Ionosphere
#pytz==2016.7
# @modified 20170809 - Task #2138: Update deps
#pytz==2016.10
# @modified 20180105 - Task #2272: update deps for luminosity branch
#pytz==2017.2
# @modified 20180416 - Task #2272: update deps for luminosity branch
#pytz==2017.3
# @modified 20180910 - Task #2588: Update dependencies
#pytz==2018.4
# @modified 20190412 - Task #2926: Update dependencies
#pytz==2018.5
# @modified 20190822 - Task #3060: Update dependencies
#pytz==2019.1
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#pytz==2019.2
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#pytz==2020.1
# @modified 20211220 - Task #4344: Update dependencies
#pytz==2020.5
# @modified 20220422 - Task #4452: Update dependencies
#pytz==2021.3
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#pytz==2022.1
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#pytz==2022.7
pytz==2023.3
# @modified 20211220 - Task #4344: Update dependencies
#cycler==0.10.0
cycler==0.11.0
# @modified 20160820 - Issue #23 Test dependency updates
#pyparsing==2.1.5
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#pyparsing==2.1.8
# @modified 20170809 - Task #2138: Update deps
#pyparsing==2.1.10
# @modified 20190412 - Task #2926: Update dependencies
#pyparsing==2.2.0
# @modified 20190822 - Task #3060: Update dependencies
#pyparsing==2.4.0
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#pyparsing==2.4.2
# @modified 20211220 - Task #4344: Update dependencies
#pyparsing==2.4.7
# @modified 20220422 - Task #4452: Update dependencies
#pyparsing==3.0.6
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#pyparsing==3.0.8
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#pyparsing==3.0.9
pyparsing==3.1.0
# @added 20210115 - Bug #3940: SNYK-PYTHON-PILLOW-1055461 and SNYK-PYTHON-PILLOW-1055462
# Added as [email protected] introduced [email protected] and Pillow is now fixed at
# 8.1.0 as per:
# https://snyk.io/vuln/SNYK-PYTHON-PILLOW-1055461
# https://snyk.io/vuln/SNYK-PYTHON-PILLOW-1055462
# https://github.com/python-pillow/Pillow/pull/5174 which fixes CVE-2020-35653
# and CVE-2020-35655
# When matplotlib requires >=8.1.0 this Pillow==8.1.0 can be removed
# @modified 20210305 - Support #3972: SNYK-PYTHON-PILLOW-1080635
# When matplotlib requires >=8.1.1 this Pillow==8.1.1 can be removed
#Pillow==8.1.0
# @modified 20210309 - Support #3972: SNYK-PYTHON-PILLOW-1080635
# When matplotlib requires >=8.1.2 this Pillow==8.1.2 can be removed
#Pillow==8.1.1
# @modified 20210407 - Support #4008: SNYK-PYTHON-PILLOW-1090584
#Pillow==8.1.2
# @modified 20211110 - Task #4282: Update dependencies
# SNYK-PYTHON-PILLOW-1316216, SNYK-PYTHON-PILLOW-1319443 and SNYK-PYTHON-PILLOW-1727377
#Pillow==8.2.0
# @modified 20211220 - Task #4344: Update dependencies
#Pillow==8.3.2
# @modified 20220110 - Task #4362: snyk - numpy and pillow updates
#Pillow==8.4.0
# @modified 20220422 - Task #4452: Update dependencies
#Pillow==9.0.0
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#Pillow==9.1.0
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#Pillow==9.4.0
Pillow==9.5.0
# @modified 20160820 - Issue #23 Test dependency updates
#matplotlib==1.5.1
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#matplotlib==1.5.2
# @modified 20170809 - Task #2138: Update deps
#matplotlib==1.5.3
# @modified 20180105 - Task #2272: update deps for luminosity branch
#matplotlib==2.0.2
# @modified 20180416 - Task #2272: update deps for luminosity branch
#matplotlib==2.1.1
# @modified 20180910 - Task #2588: Update dependencies
#matplotlib==2.2.2
# @modified 20190412 - Task #2926: Update dependencies
#matplotlib==2.2.3
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#matplotlib==2.2.4
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#matplotlib==3.2.2
# @modified 20211220 - Task #4344: Update dependencies
#matplotlib==3.3.3
# @modified 20211221 - Bug #4348: matplotlib 3.5.1 error
# Task #4344: Update dependencies
# Error with 3.5.1
#matplotlib==3.5.1
# @modified 20220217 - Task #4452: Update dependencies
#matplotlib==3.3.3
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#matplotlib==3.5.1
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#matplotlib==3.6.2
matplotlib==3.7.1
## pandas and deps
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#pandas==0.18.1
# @modified 20170809 - Task #2138: Update deps
#pandas==0.19.1
# @modified 20180105 - Task #2272: update deps for luminosity branch
#pandas==0.20.3
# @modified 20180416 - Task #2272: update deps for luminosity branch
# Bug #2274: pandas-0.22.0 and numpy
# Downgrade back to pandas=0.20.3
#pandas==0.22.0
# @modified 20180910 - Task #2588: Update dependencies
# Upgraded from 0.20.3, 0.22.0 was skipped due to #2274
# @modified 20190411 - Task #2926: Update dependencies
#pandas==0.23.4
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#pandas==0.24.2
# @modified 20201231 - Task #3898: Test Python 3.8.6 and deps
#pandas==0.25.3
# @modified 20211220 - Task #4344: Update dependencies
#pandas==1.2.0
# @modified 20220422 - Task #4452: Update dependencies
#pandas==1.3.5
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#pandas==1.4.2
pandas==1.5.2
# @modified 20180416 - Task #2272: update deps for luminosity branch
#patsy==0.4.1
# @modified 20190412 - Task #2926: Update dependencies
#patsy==0.5.0
# @modified 20211220 - Task #4344: Update dependencies
#patsy==0.5.1
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#patsy==0.5.2
patsy==0.5.3
# @modified 20170809 - Task #2138: Update deps
#statsmodels==0.6.1
#statsmodels==0.8.0
# @modified 20180915 - Bug #2600: statsmodels-0.9.0 - cannot import name _representation
# Task #2596: Build Skyline on nodes at v1.2.8
# Task #2588: Update dependencies
# As of statsmodels 0.9.0 scipy, et al need to be installed before
# statsmodels in requirements - https://github.com/statsmodels/statsmodels/issues/4654
# However as per https://github.com/statsmodels/statsmodels/blob/v0.9.0/.travis.yml
# statsmodels is not tested on current versions of numpy and scipy, rolled
# back to 0.8.0 as this works with the latest versions whereas 0.9.0 does not
#statsmodels==0.9.0
# @modified 20180910 - Task #2588: Update dependencies
# @modified 20190130 - Task #2828: Skyline - Python 3.7.2
# Python 3 requires statsmodels 0.9.0
#statsmodels==0.8.0
# @modified 20190411 - Task #2926: Update dependencies
#statsmodels==0.8.0; python_version < '2.8'
#statsmodels==0.9.0; python_version >= '3.6'
# @modified 20190822 - Task #3060: Update dependencies
#statsmodels==0.9.0
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#statsmodels==0.10.1
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#statsmodels==0.11.1
# @modified 20211220 - Task #4344: Update dependencies
#statsmodels==0.12.1
# @modified 20211220 - Bug #4346: statsmodel 0.13.1 error
# Task #4344: Update dependencies
# NotImplementedError: AR has been removed from statsmodels and replaced with statsmodels.tsa.ar_model.AutoReg.
#statsmodels==0.13.1
# @modified 20230120 - Task #4778: v4.0.0 - update dependencies
# Branch #4456: v0.19.1 (earthgecko-tsfresh)
# Updating statsmodels, scipy and numpy now tsfresh is updating to v0.19.1
# statsmodels==0.12.1
statsmodels==0.13.5
# @modified 20160820 - Issue #23 Test dependency updates
#msgpack-python==0.4.7
#msgpack-python==0.4.8
msgpack-python==0.5.6
# @modified 20160820 - Issue #23 Test dependency updates
#requests==2.10.0
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#requests==2.11.1
# @modified 20161203 - Task #1658: Patterning Skyline Ionosphere - updated to tsfresh-0.3.0
#requests==2.12.1
# @modified 20161224 - Task #1758: Update deps in Ionosphere
#requests==2.12.3
# @modified 20170809 - Task #2138: Update deps
#requests==2.12.4
# @modified 20180105 - Task #2272: update deps for luminosity branch
#requests==2.18.3
# @modified 20180910 - Task #2588: Update dependencies
#requests==2.18.4
# @modified 20181030 - Support #2652: CVE-2018-18074 - Skyline requests
#requests==2.19.1
# @modified 20190411 - Task #2926: Update dependencies
#requests==2.20.0
# @modified 20190529 - Task #3060: Update dependencies
#requests==2.21.0
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#requests==2.22.0
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#requests==2.24.0
# @modified 20211220 - Task #4344: Update dependencies
#requests==2.25.1
# @modified 20220110 - Task #4362: snyk - numpy and pillow updates
#requests==2.26.0
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#requests==2.27.1
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#requests==2.28.1
requests==2.31.0
# ALERTERS - uncomment any alerters you want to enable
# @modified 20211220 - Task #4344: Update dependencies
#python-simple-hipchat==0.4.0
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#pygerduty==0.35.0
# @modified 20161224 - Task #1758: Update deps in Ionosphere
#pygerduty==0.35.1
# @modified 20170809 - Task #2138: Update deps
#pygerduty==0.35.2
# @modified 20180105 - Task #2272: update deps for luminosity branch
#pygerduty==0.36.2
# @modified 20190412 - Task #2926: Update dependencies
#pygerduty==0.37.0
# @modified 20190508 - Task #2926: Update dependencies
#pygerduty==0.38.1
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#pygerduty==0.38.2
pygerduty==0.38.3
# for panorama - direct from MySQL as the package has broken in the context of
# pip and virtualenv - NOTE: once you have installed this once, if it is run in
# terms of configuration management, feel free to comment out the direct
# download from MySQL as it is only required once, but will run every time.
# It provides the mysql-connector-python reference below, that can be left
# uncommented.
#http://cdn.mysql.com/Downloads/Connector-Python/mysql-connector-python-1.2.3.zip#md5=6d42998cfec6e85b902d4ffa5a35ce86
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
# Seems the name is not matching in pip now when a version is used
#mysql-connector-python==1.2.3
# @modified 20180416 - Task #2272: update deps for luminosity branch
#mysql-connector-python
# @modified 20180910 - Task #2588: Update dependencies
# Bug #2590: mysql-connector-python - use_pure
# Use 8.0.6 due to #2590
#mysql-connector-python==8.0.6
#mysql-connector-python==8.0.12
# @modified 20190412 - Task #2926: Update dependencies
# Bug #2590: mysql-connector-python - use_pure
# Tested 8.0.15 on CentOS7 and Ubuntu 16.06 fine on CentOS 6 it has the same
# result as #2590, so updating to 8.0.15 and sticking on 8.0.6 for CentOS 6 in
# docs and dawn
#mysql-connector-python==8.0.6
# @modified 20190426 - Task #2964: Update dependencies
#mysql-connector-python==8.0.15
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#mysql-connector-python==8.0.16
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#mysql-connector-python==8.0.20
# @modified 20211220 - Task #4344: Update dependencies
#mysql-connector-python==8.0.22
# @modified 20220422 - Task #4452: Update dependencies
#mysql-connector-python==8.0.27
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#mysql-connector-python==8.0.28
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#mysql-connector-python==8.0.31
mysql-connector-python==8.0.33
# For a production WSGI HTTP Server for the Webapp
# @modified 20170809 - Task #2138: Update deps
#gunicorn==19.6.0
# @modified 20180910 - Task #2588: Update dependencies
#gunicorn==19.7.1
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#gunicorn==19.9.0
# @modified 20211220 - Task #4344: Update dependencies
#gunicorn==20.0.4
gunicorn==20.1.0
# For dependencies management and helpful for debugging
# @modified 20161119 - Branch #922: ionosphere
# Task #1758: Update deps in Ionosphere
#pipdeptree==0.6.0
# @modified 20170809 - Task #2138: Update deps
#pipdeptree==0.8.0
# @modified 20180416 - Task #2272: update deps for luminosity branch
#pipdeptree==0.10.1
# @modified 20180910 - Task #2588: Update dependencies
#pipdeptree==0.12.1
# @modified 20190412 - Task #2926: Update dependencies
#pipdeptree==0.13.0
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#pipdeptree==0.13.2
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#pipdeptree==1.0.0
# @modified 20211220 - Task #4344: Update dependencies
#pipdeptree==2.0.0
# @modified 20220110 - Task #4362: snyk - numpy and pillow updates
#pipdeptree==2.2.0
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#pipdeptree==2.2.1
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#pipdeptree==2.3.3
pipdeptree==2.9.3
# @added 20210614 - Task #4140: deps updates
# Branch #1444: thunder
# https://snyk.io/vuln/SNYK-PYTHON-PIP-1278135
# Pin to 21.1.2 until pipdeptree updates
# @modified 20211220 - Task #4344: Update dependencies
#pip==21.1.2
# @added 20161119 - Branch #922: ionosphere
## tsfresh and deps
# @modified 20170809 - Task #2138: Update deps
#scikit_learn==0.18.1
# @modified 20180105 - Task #2272: update deps for luminosity branch
#scikit_learn==0.18.2
# @modified 20180910 - Task #2588: Update dependencies
#scikit_learn==0.19.1
# @modified 20190412 - Task #2926: Update dependencies
#scikit_learn==0.19.2
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#scikit_learn==0.20.3
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#scikit-learn==0.23.1
# @modified 20210614 - Task #4140: deps updates
# Branch #1444: thunder
# https://snyk.io/vuln/SNYK-PYTHON-SCIKITLEARN-1079100
#scikit-learn==0.24.0
# @modified 20211220 - Task #4344: Update dependencies
#scikit-learn==0.24.2
# @modified 20220110 - Task #4362: snyk - numpy and pillow updates
#scikit-learn==1.0.1
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
# A bit of a jump but tsfresh tests OK, awaiting adtk testing
#scikit-learn==1.0.2
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#scikit-learn==1.2.0
scikit-learn==1.2.2
# @modified 20190412 - Task #2926: Update dependencies
#future==0.16.0
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#future==0.17.1
# @modified 20230331 - Support #4884: Update dependencies - redis-py - CVE-2023-28858
#future==0.18.2
future==0.18.3
# @modified 20161203 - Task #1658: Patterning Skyline Ionosphere - updated to tsfresh-0.3.0
#tsfresh==0.1.2
# @modified 20161224 - Task #1758: Update deps in Ionosphere
#tsfresh==0.3.0
# @modified 20161226 - Task #1758: Update deps in Ionosphere
# Bug #1822: tsfresh extract_features process stalling
# Making use of ReasonableFeatureExtractionSettings in 0.4.0 to overcome the
# computationally high cost of extracting features from very static timeseries
# that have little to no variation is the values, which results in features
# taking up to almost 600 seconds to calculate on a timeseries of length 10075
# (168h - 1 datapoint per 60s)
#tsfresh==0.3.1
# @added 20210101 - Task #3926: Test Skyline with dependencies updates - tsfresh v0.17.9
# Update tsfresh to earthgecko/tsfresh branch v0.17.9
#tsfresh==0.4.0
# @modified 20220111 - Task #4368: Switch git clone to https
#git+git://github.com/earthgecko/tsfresh@05ee36c#egg=tsfresh
# @modified 20230123 - Task #4778: v4.0.0 - update dependencies
# Branch #4456 v0.19.1 (earthgecko/tsfresh)
#git+https://github.com/earthgecko/tsfresh@05ee36c#egg=tsfresh
git+https://github.com/earthgecko/tsfresh@3d5a320#egg=tsfresh
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#termcolor==1.1.0
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#termcolor==2.1.1
termcolor==2.3.0
# @added 20161127 - Branch #922: ionosphere
## pytest and deps
# @modified 20161224 - Task #1758: Update deps in Ionosphere
#py==1.4.31
#pytest==3.0.4
# @modified 20170809 - Task #2138: Update deps
#py==1.4.32
#pytest==3.0.5
# @modified 20180105 - Task #2272: update deps for luminosity branch
#py==1.4.34
#pytest==3.2.0
# @modified 20180416 - Task #2272: update deps for luminosity branch
#py==1.5.2
#pytest==3.3.2
# @modified 20180910 - Task #2588: Update dependencies
#py==1.5.3
#pytest==3.5.0
# @modified 20190412 - Task #2926: Update dependencies
#py==1.6.0
#pytest==3.8.0
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#py==1.8.0
# @modified 20201212 - Support #3874: SNYK-PYTHON-PY-1049546
# Dependency vulnerability - py - CVE-2020-29651 #378
# Update to py 1.10.0
#py==1.9.0
# @modified 20211220 - Task #4344: Update dependencies
#py==1.10.0
py==1.11.0
# @modified 20190426 - Task #2964: Update dependencies
#pytest==4.4.0
# @modified 20190529 - Task #3060: Update dependencies
#pytest==4.4.1
# @modified 20190822 - Task #3060: Update dependencies
#pytest==4.5.0
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#pytest==4.6.5
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#pytest==5.4.3
# @modified 20211220 - Task #4344: Update dependencies
#pytest==6.2.1
# @modified 20220422 - Task #4452: Update dependencies
#pytest==6.2.5
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#pytest==7.1.1
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#pytest==7.2.0
pytest==7.4.0
# @added 20161130 - Branch #922: ionosphere
## sqlalchemy by this stage of the (no deps)
# @modified 20170809 - Task #2138: Update deps
#sqlalchemy==1.1.4
# @modified 20180105 - Task #2272: update deps for luminosity branch
#sqlalchemy==1.1.13
# @modified 20180416 - Task #2272: update deps for luminosity branch
#sqlalchemy==1.2.0
# @modified 20180910 - Task #2588: Update dependencies
#SQLAlchemy==1.2.6
# @modified 20190411 - Task #2926: Update dependencies
#SQLAlchemy==1.2.11
# @modified 20190426 - Task #2964: Update dependencies
#SQLAlchemy==1.3.2
# @modified 20190529 - Task #3060: Update dependencies
#SQLAlchemy==1.3.3
# @modified 20190822 - Task #3060: Update dependencies
#SQLAlchemy==1.3.4
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#SQLAlchemy==1.3.7
# @modified 20200828 - Task #3720: Update sqlalchemy - SNYK-PYTHON-SQLALCHEMY-590109
#SQLAlchemy==1.3.18
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#SQLAlchemy==1.3.19
# @modified 20211220 - Task #4344: Update dependencies
#SQLAlchemy==1.3.22
# @modified 20220110 - Task #4362: snyk - numpy and pillow updates
#SQLAlchemy==1.4.28
# @modified 20220422 - Task #4452: Update dependencies
#SQLAlchemy==1.4.29
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#SQLAlchemy==1.4.35
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#SQLAlchemy==1.4.45
SQLAlchemy==1.4.48
# @added 20170809 - Task #2132: Optimise Ionosphere DB usage
# @modified 20180416 - Task #2272: update deps for luminosity branch
#pymemcache==1.4.3
# @modified 20190412 - Task #2926: Update dependencies
#pymemcache==1.4.4
# @modified 20190822 - Task #3060: Update dependencies
#pymemcache==2.1.1
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#pymemcache==2.2.2
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#pymemcache==3.2.0
# @modified 20211220 - Task #4344: Update dependencies
#pymemcache==3.4.0
# @modified 20220422 - Task #4452: Update dependencies
#pymemcache==3.5.0
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#pymemcache==3.5.2
# @modified 20230119 - Task #4778: v4.0.0 - update dependencies
# Downgraded to 3.5.2 because opentelemetry-instrumentation-pymemcache==0.36b0
# requires pymemcache >= 1.3.5, < 4
#pymemcache==4.0.0
pymemcache==3.5.2
# @added 20180520 - Feature #2378: Add redis auth to Skyline and rebrow
# pycrypto replaced with pycryptodome
#pycrypto==2.6.1
# @modified 20180526 - Feature #2378: Add redis auth to Skyline and rebrow
# Use PyJWT instead of pycryptodome
#pycryptodome==3.6.1
# @modified 20190412 - Task #2926: Update dependencies
#PyJWT==1.6.4
# @modified 20211220 - Task #4344: Update dependencies
#PyJWT==1.7.1
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#PyJWT==2.3.0
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#PyJWT==2.6.0
PyJWT==2.7.0
# @added 20180105 - Branch #2270: luminosity
# @added 20180105 - Branch #2270: luminosity
# @modified 20180413 - Branch #2270: luminosity
#luminol==0.4
# Using fork with fixes as per
# https://github.com/linkedin/luminol/pull/39 - Passed max_shift_seconds to milliseconds
# https://github.com/linkedin/luminol/pull/41 - fix normalize
# @modified 20201231 - Task #3898: Test Python 3.8.6 and deps
# Update future version in luminol
#git+git://github.com/earthgecko/luminol@d429044#egg=luminol
# @modified 20220111 - Task #4368: Switch git clone to https
#git+git://github.com/earthgecko/luminol@2de3fb2#egg=luminol
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
# Task #4820: Deprecation of numpy asscalar function in luminol
# Use earthgecko/luminol 0.4.4
# git+https://github.com/earthgecko/luminol@2de3fb2#egg=luminol
git+https://github.com/earthgecko/luminol@40791e2#egg=luminol
# @added 20181006 - Feature #2618: alert_slack
# @modified 20190412 - Task #2926: Update dependencies
# Fixes websocket-client at 0.54.0 but is now at 0.56.0
#slackclient==1.3.0
# @modified 20190822 - Task #3060: Update dependencies
#slackclient==1.3.1
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#slackclient==1.3.2
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#slackclient==2.7.2
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#slackclient==2.9.3
slackclient==2.9.4
# @added 20210305 - Support #3974: SNYK-PYTHON-AIOHTTP-1079232
# When slackclient requires aiohttp>=3.7.4 this can be removed
# @modified 20211220 - Support #4340: SNYK-PYTHON-AIOHTTP-1584144
# Task #4344: Update dependencies
#aiohttp==3.7.4
# @modified 20220422 - Task #4452: Update dependencies
#aiohttp==3.8.0
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#aiohttp==3.8.1
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#aiohttp==3.8.3
aiohttp==3.8.4
# @added 20190412 - Task #2926: Update dependencies
# Added to address CVE-2018-20060 as is required by requests at >=1.21.1,<1.25
# @modified 20190426 - Task #2964: Update dependencies
# Mitigate CVE-2018-20060 and SNYK-PYTHON-URLLIB3-72681
#urllib3>=1.24.1
# @modified 20190509 - Task #2964: Update dependencies
# requests requires <= 1.24.3
#urllib3>=1.25.1
# @modified 20190529 - Task #3060: Update dependencies
#urllib3==1.24.3
# @modified 20200701 - Task #3608: Update Skyline to Python 3.8.3 and deps
#urllib3==1.25.3
# @modified 20201229 - Task #3898: Test Python 3.8.6 and deps
#urllib3==1.25.9
# @modified 20210324 - Support #3988: SNYK-PYTHON-URLLIB3-1085966
#urllib3==1.26.2
# @modified 20210614 - Task #4140: deps updates
# Branch #1444: thunder
# https://github.com/earthgecko/skyline/pull/431
#urllib3==1.26.4
# @modified 20211220 - Task #4344: Update dependencies
#urllib3==1.26.5
# @modified 20220110 - Task #4362: snyk - numpy and pillow updates
#urllib3==1.26.7
# @modified 20220422 - Task #4452: Update dependencies
#urllib3==1.26.8
# @modified 20230102 - Task #4778: v4.0.0 - update dependencies
#urllib3==1.26.9
# @modified 20230625 - Task #4962: Build and test skyline v4.0.0
# Task #4778: v4.0.0 - update dependencies
#urllib3==1.26.13
urllib3==1.26.16