forked from spotify/chartify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathq
More file actions
1686 lines (1116 loc) · 48 KB
/
q
File metadata and controls
1686 lines (1116 loc) · 48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[33mcommit 42d80dd9d828a6fed5a18cc2aa253f288c8c2bb7[m[33m ([m[1;36mHEAD -> [m[1;32mmaster[m[33m, [m[1;31morigin/master[m[33m, [m[1;31morigin/HEAD[m[33m)[m
Author: Jaytined <118459543+Jaytined@users.noreply.github.com>
Date: Mon Apr 24 09:36:43 2023 -0400
Hoverable Feature Implemented
[33mcommit 054a66df16f9c76a1aeab5867b21a829779646d8[m
Author: Jaytined <118459543+Jaytined@users.noreply.github.com>
Date: Mon Apr 24 09:09:12 2023 -0400
Add test files
[33mcommit b1ef271ce28a8521e143dadaf27ea636c459278a[m
Author: Vinny <quinterovinny@gmail.com>
Date: Mon Apr 24 02:17:31 2023 -0400
Add test file
[33mcommit ca254f98b72c4a09ad143fe3028232c263953524[m
Author: Vinny <quinterovinny@gmail.com>
Date: Mon Apr 24 01:15:49 2023 -0400
Refactor private methods
[33mcommit 9a5d53eb092801c331c1c3f02cb0665530379b5b[m
Author: Jaytined <118459543+Jaytined@users.noreply.github.com>
Date: Sat Apr 22 16:51:07 2023 -0400
Refactor: Move/Organize Functions to Other Classes
[33mcommit 7cddd9637fd4fb6c8440d25428fff19ea4b6e3d0[m
Author: Jaytined <118459543+Jaytined@users.noreply.github.com>
Date: Fri Apr 21 15:29:21 2023 -0400
Refactor: Move/Organize Functions to Other Classes
[33mcommit 2ac9a08b388065f88e34f98c889756a65efce836[m
Merge: f097620 147deac
Author: Vinny <quinterovinny@gmail.com>
Date: Fri Apr 14 10:30:39 2023 -0400
Merge branch 'pie'
[33mcommit f0976208ab7e2528801e1064f0ede8e55f53b35e[m
Author: Vinny <quinterovinny@gmail.com>
Date: Fri Apr 14 10:29:03 2023 -0400
Update gitignore
[33mcommit 364b75d17c4a579ba3c7520843a9d4cefc497c30[m
Author: Jaytined <118459543+Jaytined@users.noreply.github.com>
Date: Wed Apr 12 18:33:08 2023 -0400
Merge branch Total Text (dev2)
[33mcommit 382d2b24caebfb8f960cc496dd6bb2ef8c5beadc[m
Author: Jaytined <118459543+Jaytined@users.noreply.github.com>
Date: Wed Apr 12 18:23:48 2023 -0400
Merge branch Total Text (dev2)
[33mcommit 2cc22dd32c68e4d187e0b72f1fd7c70296188387[m
Merge: d2d9057 acc4a2c
Author: Vinny <quinterovinny@gmail.com>
Date: Wed Apr 12 18:07:50 2023 -0400
Merge branch 'with'
[33mcommit d2d905787049235b4636e1b812f96501909293d3[m
Author: Vinny <quinterovinny@gmail.com>
Date: Wed Apr 12 18:04:10 2023 -0400
Make area nan values optional
[33mcommit e24e8448737e80e5faa7f1b42bd007d2a5f799cd[m
Merge: 19f2c1b 77ccfc1
Author: Vinny <quinterovinny@gmail.com>
Date: Wed Apr 12 17:52:50 2023 -0400
Merge branch 'master' of github.com:Arcey-bot/chartify
[33mcommit 19f2c1bfcd2af700a7eb5146c8f9bde38d390b1f[m[33m ([m[1;31morigin/nulls[m[33m, [m[1;32mnulls[m[33m)[m
Author: Vinny <quinterovinny@gmail.com>
Date: Wed Apr 12 17:41:45 2023 -0400
Implement null safety for source construction
[33mcommit 147deacb7b87673b2a44353db756e0705aa1b379[m[33m ([m[1;31morigin/pie[m[33m, [m[1;32mpie[m[33m)[m
Author: Vinny <quinterovinny@gmail.com>
Date: Wed Apr 12 17:26:11 2023 -0400
Update test file
[33mcommit 36cfbe6029446b96b135692872d9e57a47fd69fe[m
Author: Vinny <quinterovinny@gmail.com>
Date: Wed Apr 12 17:12:10 2023 -0400
Refactor to us builtin plotting methods
[33mcommit d9b6b736540a96842c2432ca3e072173a0270015[m
Author: Vinny <quinterovinny@gmail.com>
Date: Wed Apr 12 16:41:32 2023 -0400
Refactor imports and remove useless color setting
[33mcommit f3a7e8a367d9d01505e4abeeccd8148b09a2448a[m
Author: Vinny <quinterovinny@gmail.com>
Date: Wed Apr 12 16:40:47 2023 -0400
Add optional params to pie
[33mcommit acc4a2cfaaa4f125d222e577ae4cec5ebf8b06a9[m
Author: Vinny <quinterovinny@gmail.com>
Date: Wed Apr 12 13:23:19 2023 -0400
Delete chart on with close
[33mcommit 9c36a62c6525fb7983d781aefc50c82bcca78643[m
Author: Vinny <quinterovinny@gmail.com>
Date: Mon Apr 10 23:12:36 2023 -0400
PIEEEEE
[33mcommit 80f5c03b61fb16af09036e66044244c3cd409b38[m
Author: Vinny <quinterovinny@gmail.com>
Date: Mon Apr 10 23:04:52 2023 -0400
PIE
[33mcommit 77ccfc1bc32ca6f7aad88aa5b9739947b1ab7051[m
Author: Pedro Moura <62116654+moura-pedro@users.noreply.github.com>
Date: Mon Apr 10 19:52:22 2023 -0400
add comments on cummulative_histogram func
[33mcommit 2ad33ee731f0ea40da79b5392cd5e0a06d7f0c95[m
Author: Vinny <quinterovinny@gmail.com>
Date: Mon Apr 10 15:16:35 2023 -0400
Implement with keyword
[33mcommit 57c26d7a8a04813f24a244348f7987b6f771f672[m
Author: Vinny <quinterovinny@gmail.com>
Date: Sat Apr 8 05:09:07 2023 -0400
Resolve issue 56
[33mcommit ef19c097d4a08b9fe1c427e707ff535d967f658c[m[33m ([m[1;31morigin/dev[m[33m)[m
Author: Vinny <quinterovinny@gmail.com>
Date: Thu Apr 6 15:33:38 2023 -0400
Fix the critical issue or Nan in parallel plot
[33mcommit 03c0aaff2dd37d3d41eb277239377c7816aa9c56[m[33m ([m[1;32mmaster-backup[m[33m)[m
Author: Vinny <44277279+Arcey-bot@users.noreply.github.com>
Date: Tue Apr 4 17:48:33 2023 -0400
Update test
[33mcommit 5c822eb5b8be0f7fc754b582781106a886e762b5[m
Author: Vinny <44277279+Arcey-bot@users.noreply.github.com>
Date: Tue Apr 4 17:47:51 2023 -0400
Refactor
[33mcommit 10efc937a3864a258cbd468aff97338ac929005d[m
Author: Vinny <44277279+Arcey-bot@users.noreply.github.com>
Date: Tue Apr 4 17:44:10 2023 -0400
Implement cumulative histograms
[33mcommit 75e306d689fa528ab7a1579cc2c7ede6a988ae03[m
Author: Vinny <quinterovinny@gmail.com>
Date: Tue Apr 4 14:18:02 2023 -0400
Test env
[33mcommit 364361f3e03718a4f67c96cae24c4185235e3a21[m
Author: Pelle Sillren <pers@spotify.com>
Date: Thu Mar 30 12:57:54 2023 +0200
Release 4.0.2 (#159)
* Fixed categorical_order_by used with array_like (#157)
* Fix categorical_order_by check for scatter plot
* Fix categorical_order_by check for _construct_source
* Refactor category sorting in _construct_source
* Add tests for categorical_order_by
* Correct scatter test (#158)
* Update version in init
* Update HISTORY.rst
---------
Co-authored-by: Quoc Duong Bui <35042166+vanHekthor@users.noreply.github.com>
[33mcommit ca828ab14bc11e3ebc941d9ab06775bf86d065ec[m
Author: Pelle Sillren <pers@spotify.com>
Date: Fri Mar 24 13:27:27 2023 +0100
Require pillow 9 1 0 (#156)
* Update pillow requirement to avoid bug
* Updated version and history
[33mcommit 75893e35dd3bb5b7bf786f9017de50a94b9ca9a9[m
Author: Pelle Sillren <pers@spotify.com>
Date: Fri Mar 24 13:16:42 2023 +0100
Update pillow requirement to avoid bug (#155)
[33mcommit b518f1b4636423dcb4020294d620b90ffa862bfb[m
Author: Pelle Sillren <pers@spotify.com>
Date: Thu Mar 23 20:32:47 2023 +0100
Release 4.0.0 (#154)
* Support for bokeh 3.1.0 (>2.0.0) (#153)
* Fix range args with value None
* Pass range start / end only if not None
* Fix font value for bokeh>=2.3
* Undo pinning bokeh to <2.3.0
* Workaround for select(CategoricalColorMapper) bug
- bug in bokeh>=3.0.0
- https://github.com/bokeh/bokeh/issues/13015
* - Drop python 3.6 and 3.7 from tox testing
- Update version to 4.0.0
* Try to add python 3.11
* Remove 3.11
* Update requirements
* Updated dev requirements
* Reformat and change back flake8 version
* Re-ran example notebook
---------
Co-authored-by: Quoc Duong Bui <35042166+vanHekthor@users.noreply.github.com>
[33mcommit 59df3674d1ea635112e638464cab947312627d3e[m
Author: Pelle Sillren <pers@spotify.com>
Date: Wed Mar 22 10:41:38 2023 +0100
Release 3.1.0 (#152)
* Added boxplot feature (#151)
* Add method for boxplot dataframe
* Add method for plotting boxplot
* Change default order to ascending
* Add check for categorical_order_by
* Remove show() from boxplot method
* Fix wrong horizontal boxplot
* Correctly set numeric axis range
* Remove _sort_categories method and its usages
* Add tests for boxplot
* Change to not deprecated syntax
* Improve formatting
* Add doc to boxplot method
* Add doc for _compute_boxplot_df
* Rename test_standard to test_default
* Updated version and added boxplot example to examples notebook
---------
Co-authored-by: Quoc Duong Bui <35042166+vanHekthor@users.noreply.github.com>
[33mcommit 7af764aee528709f37582a6d46edfc4bfce8afce[m
Author: Pelle Sillren <pers@spotify.com>
Date: Tue Dec 13 10:35:15 2022 +0100
Release 3.0.5 (#147)
* Fix a couple of cosmetic errors in notebooks
* Update requirements.txt (#143)
* Updated version and history
* Run tests on older ubuntu that still has python 3.6
Co-authored-by: Ben Greiner <code@bnavigator.de> and @valleyofblackpanther
[33mcommit b27473bc041ef8002631449088680ea257adf5ce[m
Author: Pelle Sillren <pellesemail@gmail.com>
Date: Tue Oct 18 12:33:01 2022 +0200
Release 3.0.4 (#140)
This update is a maintanaince release with no new features and mainly behind the scenes updates:
* Update github actions
* Limit versions of bokeh, Jinja, and importlib-metadata to fix build error. This is only necessary for python 3.6 it seems.
* Updated required versions of pytest and coverage
* Update setup.py (#135)
* Update options.py (#133)
* Change ChromeDriver link to avoid deprecated site (#134)
* Added test case and fix from [PR #127](https://github.com/spotify/chartify/pull/127)
* Eliminate a number of deprecation warnings
* Add publish to PyPi workflow
Co-authored-by: Anurag Kumar <mailanu98@gmail.com>
Co-authored-by: Moad Akhraz <77294440+mdakh404@users.noreply.github.com>
Co-authored-by: Damian <54457902+dxbednarczyk@users.noreply.github.com>
Co-authored-by: Damian <54457902+dbednar230@users.noreply.github.com>
[33mcommit b8c27d49c12695b1c7d14cf02f1a170a0289caf3[m
Merge: 5ac3a88 057af8b
Author: Pelle Sillren <pellesemail@gmail.com>
Date: Thu Oct 13 12:48:47 2022 +0200
Merge pull request #137 from Bennykillua/chartify-viz
chartify-viz
[33mcommit 057af8b9c44cbeae4b0cf357087125d4a0bce645[m
Author: Bennykillua <67695793+Bennykillua@users.noreply.github.com>
Date: Mon Jan 31 13:20:48 2022 +0100
Update README.rst
[33mcommit fded68d9a25482ba91a302c7ada48fe58bd7e0d1[m
Author: Bennykillua <iheifeanyi@gmail.com>
Date: Mon Jan 31 13:14:45 2022 +0100
chartify-viz
[33mcommit 5ac3a88e54cf620389741f396cc19d60fe032822[m
Merge: 4fcd8a4 e835813
Author: Daniel Norberg <dano@spotify.com>
Date: Fri Feb 5 13:49:02 2021 -0500
Merge pull request #122 from timgates42/bugfix_typo_quantity
docs: fix simple typo, quanity -> quantity
[33mcommit e8358134fcee498f6ae549d08b0b0f27ee9388d9[m
Merge: e716977 4fcd8a4
Author: Daniel Norberg <dano@spotify.com>
Date: Fri Feb 5 13:44:46 2021 -0500
Merge branch 'master' into bugfix_typo_quantity
[33mcommit 4fcd8a4620cd834c5000ae2e4ea2945fe97a2c80[m
Merge: 8798133 3f28a77
Author: Daniel Norberg <dano@spotify.com>
Date: Fri Feb 5 13:44:35 2021 -0500
Merge pull request #124 from daikikatsuragawa/patch-1
Update tox.yml
[33mcommit 3f28a773c9646451c94a976fb67a46df759244a3[m
Merge: be9be0b 8798133
Author: Daniel Norberg <dano@spotify.com>
Date: Fri Feb 5 13:37:20 2021 -0500
Merge branch 'master' into patch-1
[33mcommit e716977f09ff38649b0460d16f244929cdf6e820[m
Merge: 742670c 8798133
Author: Daniel Norberg <dano@spotify.com>
Date: Fri Feb 5 13:36:57 2021 -0500
Merge branch 'master' into bugfix_typo_quantity
[33mcommit 87981333e9bea9779d0e753236413f844df6b409[m
Author: Daniel Norberg <dano@spotify.com>
Date: Fri Feb 5 13:29:17 2021 -0500
trigger tox gha on pull_request
[33mcommit be9be0b17c3115c3a3085feb848a1fb6ebbb5671[m
Author: Daiki Katsuragawa <50144563+daikikatsuragawa@users.noreply.github.com>
Date: Sun Jan 17 04:40:42 2021 +0900
Update tox.yml
[33mcommit 408d3073d1e0e1c5815eda91c5d517e85e0f8696[m
Author: Daiki Katsuragawa <50144563+daikikatsuragawa@users.noreply.github.com>
Date: Sun Jan 17 04:39:04 2021 +0900
Update tox.yml
[33mcommit 742670cb45024965153bdeb2fc1b948f37941942[m
Author: Tim Gates <tim.gates@iress.com>
Date: Fri Dec 25 14:48:28 2020 +1100
docs: fix simple typo, quanity -> quantity
There is a small typo in chartify/examples.py.
Should read `quantity` rather than `quanity`.
[33mcommit 615f34a854e03f28aff3c93c75a4394dbac1c7ad[m
Merge: ae4c5d2 8c0a4fd
Author: Daniel Norberg <dano@spotify.com>
Date: Mon Nov 2 17:11:04 2020 -0500
Merge pull request #121 from spotify/release-3.0.3
release 3.0.3
[33mcommit 8c0a4fdecddcfc446ebc758ee47d54dd9f268e80[m
Author: Daniel Norberg <dano@spotify.com>
Date: Mon Nov 2 17:07:11 2020 -0500
release 3.0.3
[33mcommit ae4c5d2f23ccfd514e2a5d50f05f5d0275f76c18[m
Merge: 3a8f195 1df5df0
Author: Daniel Norberg <dano@spotify.com>
Date: Mon Nov 2 16:59:55 2020 -0500
Merge pull request #120 from spotify/gha-tox
gha: rename workflow to tox
[33mcommit 1df5df00104a6f6ab8882f5f465f2199af1533e6[m
Author: Daniel Norberg <dano@spotify.com>
Date: Mon Nov 2 16:56:56 2020 -0500
gha: rename workflow to tox
[33mcommit 3a8f1958ca9b712b9b65da487019f733b8c62ba1[m
Author: Daniel Norberg <dano@spotify.com>
Date: Mon Nov 2 16:55:28 2020 -0500
readme: fix CI link
[33mcommit 7446c99a982c9b2d8916ce26aef88802a427658f[m
Merge: a785199 aa33a6a
Author: Daniel Norberg <dano@spotify.com>
Date: Mon Nov 2 16:50:46 2020 -0500
Merge pull request #113 from Pranjalya/patch-1
Fixed typo
[33mcommit a785199f7874e8bdc1ac113dd673dee837ecda5f[m
Merge: 7b9a99d d314d5d
Author: Daniel Norberg <dano@spotify.com>
Date: Mon Nov 2 16:50:23 2020 -0500
Merge pull request #118 from spotify/ocsw-fix-deprecated-yaml-load
fix deprecated yaml load
[33mcommit d314d5d5d087f63ce17a64d2419d0522288e10a6[m
Author: Daniel Norberg <dano@spotify.com>
Date: Mon Nov 2 16:45:21 2020 -0500
test: use tmpdir fixture
[33mcommit bed4c374155c0e14b3052cf9b93cf3537aedfadc[m
Author: Daniel Norberg <dano@spotify.com>
Date: Mon Nov 2 13:56:20 2020 -0500
fix tests
[33mcommit 075cef335ddafe62811ba431c0043ccd4d66c5d1[m
Author: Daniel Norberg <dano@spotify.com>
Date: Fri Oct 30 09:53:00 2020 -0400
fix naming
[33mcommit 7b6cbc78863801e1c3e5329e441681caaae152bb[m
Author: Daniel Norberg <dano@spotify.com>
Date: Thu Oct 29 22:03:01 2020 -0400
flake8
[33mcommit d3a950cbed3e70a65aff71a438eec4d476649901[m
Author: Daniel Norberg <dano@spotify.com>
Date: Thu Oct 29 17:22:14 2020 -0400
options: add TODO for SafeLoader
[33mcommit 0091aff6a6fb670e3952ab53d07663a98d80d4ee[m
Author: Daniel Norberg <dano@spotify.com>
Date: Thu Oct 29 17:21:52 2020 -0400
colors: use UnsafeLoader
[33mcommit e9d34194b19f973b934497a1013c918bc8a98fee[m
Author: Danielle Zephyr Malament <danielle.malament@gmail.com>
Date: Wed Oct 21 16:02:36 2020 -0400
Replace deprecated yaml FullLoader
[33mcommit ab28556ccbb12011f59988ee864ca3fbe5d4cf2c[m
Author: Daniel Norberg <dano@spotify.com>
Date: Thu Oct 29 17:18:47 2020 -0400
add failing tests
[33mcommit 7b9a99d0b9212ef1b084822ceb04f87e8040fadf[m
Merge: e49654c abccd2b
Author: Daniel Norberg <dano@spotify.com>
Date: Mon Nov 2 16:35:23 2020 -0500
Merge pull request #119 from spotify/gh-actions
test: run tox using github actions
[33mcommit abccd2bf4c399aa2750701111dfa77cd88a36616[m
Author: Daniel Norberg <dano@spotify.com>
Date: Mon Nov 2 14:28:10 2020 -0500
test: run tox using github actions
[33mcommit e49654c847cd1fd976223c97d07f368e286ad010[m
Merge: 8fe14fb 40fa856
Author: Daniel Norberg <daniel.norberg@gmail.com>
Date: Wed Oct 21 13:11:19 2020 -0400
Merge pull request #116 from spotify/release-3.0.2
release 3.0.2
[33mcommit 40fa856f1162b7cfb96bf513a530d5986ab62bc1[m
Author: Daniel <dano@spotify.com>
Date: Wed Oct 21 11:43:41 2020 -0400
release 3.0.2
[33mcommit 8fe14fbc208334e4aa1237392b7a8fb0c35f5c60[m
Merge: 36bdcb0 c4127b9
Author: Daniel Norberg <daniel.norberg@gmail.com>
Date: Fri Oct 16 15:27:09 2020 -0400
Merge pull request #115 from danielnorberg/support-pyyaml-5.2+
Support pyyaml 5.2+
[33mcommit c4127b96c4c5bb51f9b61eb2e7822770b7af7366[m
Author: Daniel <dano@spotify.com>
Date: Fri Oct 16 18:42:57 2020 +0000
pep8
[33mcommit 6dde2ca5095104210386a62437400a03ad1cbc65[m
Author: Daniel <dano@spotify.com>
Date: Fri Oct 16 14:33:57 2020 -0400
make it work without test isolation
[33mcommit 74b45e69cadc418df5b3228d206bc64822e3bda7[m
Author: Daniel <dano@spotify.com>
Date: Fri Oct 16 12:25:43 2020 -0400
require pyyaml>=5.3.1
[33mcommit 3c803e16e4af8bda8b59981ae14944f7122476e6[m
Author: Daniel <dano@spotify.com>
Date: Fri Oct 16 12:25:24 2020 -0400
use UnsafeLoader to load configuration
https://github.com/yaml/pyyaml/issues/355#issuecomment-561246757
[33mcommit 7dcc397f6a6a696e70c25fe2828ca039061b56d3[m
Author: Daniel <dano@spotify.com>
Date: Fri Oct 16 13:57:34 2020 -0400
add failing test
[33mcommit aa33a6a07b64b8c8865401ce58f7a5d95bb90469[m
Author: Pranjalya Tiwari <pranjalyawarrior@gmail.com>
Date: Sat Jun 13 19:52:55 2020 +0530
Fixed typo
[33mcommit 36bdcb00eab3ce3a6106e3db0262f03da3e66963[m
Merge: 02bc465 3ca1a2e
Author: Chris Halpert <cphalpert@gmail.com>
Date: Tue Jun 2 17:49:25 2020 -0400
Merge pull request #112 from spotify/switch_from_jupyter_to_ipython
Remove jupyter dependency
[33mcommit 3ca1a2e21330cba623bc579a2b6a08dadc45b8f0[m
Author: Chris Halpert <chalpert@fb.com>
Date: Tue Jun 2 17:45:39 2020 -0400
Update jupyter dependency
[33mcommit 02bc46522c8716d6c7ec201e1b33d57c04faf22d[m
Merge: 9581a6c 18e40a4
Author: Chris Halpert <cphalpert@gmail.com>
Date: Fri May 29 15:58:57 2020 -0400
Merge pull request #111 from spotify/release_3.0.0
3.0 release
[33mcommit 18e40a4d957c29be8d4ca8711607651f94e9ed0d[m
Author: Chris Halpert <chalpert@fb.com>
Date: Fri May 29 15:54:20 2020 -0400
3.0 release
[33mcommit 9581a6c0af81f07396e267e5fd28a3c46059191a[m
Merge: e75dfea c574762
Author: Chris Halpert <cphalpert@gmail.com>
Date: Fri May 29 15:51:23 2020 -0400
Merge pull request #110 from spotify/remove_colour
Remove colour dependency
[33mcommit c5747625d1b5f8abfaa82068983c6a98f343313a[m
Merge: 6f4b18d e75dfea
Author: Chris Halpert <cphalpert@gmail.com>
Date: Fri May 29 15:47:32 2020 -0400
Merge branch 'master' into remove_colour
[33mcommit 6f4b18d77c3f7a09a5b8b0a0e3fbaa553d806033[m
Author: Chris Halpert <chalpert@fb.com>
Date: Fri May 29 15:43:02 2020 -0400
Exclude colour from flake8
[33mcommit 5ba0be2bce447f8fc58d068f1e8e803d8e47371e[m
Author: Chris Halpert <chalpert@fb.com>
Date: Fri May 29 15:39:53 2020 -0400
Bump bokeh requirement
[33mcommit 623333ee47cdb96017f917a18b307f60ac047999[m
Author: Chris Halpert <chalpert@fb.com>
Date: Fri May 29 15:35:21 2020 -0400
Remove colour dependency
[33mcommit e75dfea25713d2cb51da3619c32a1e6dc49274cf[m
Merge: 0cc29ae 04f4946
Author: Chris Halpert <cphalpert@gmail.com>
Date: Fri May 29 15:35:08 2020 -0400
Merge pull request #109 from spotify/upgrade_bokeh
Upgrade bokeh to 2.0+
[33mcommit 04f4946531fac3b2caea6941f404e8cf90f08fd3[m
Author: Chris Halpert <chalpert@fb.com>
Date: Fri May 29 15:28:47 2020 -0400
Fix flake8 errors
[33mcommit 23ccc0dd2efd934920f7fb5ab391160f40da7f16[m
Author: Chris Halpert <chalpert@fb.com>
Date: Fri May 29 15:12:03 2020 -0400
Add history note
[33mcommit 3728bbbfd5932fcaf266563d03a233dd78bb42d0[m
Author: Chris Halpert <chalpert@fb.com>
Date: Fri May 29 15:02:49 2020 -0400
Update ipython dev req to work with python 3.8
[33mcommit 13fd7902c2679d8ab9c2839e58499e48efc5077f[m
Author: Chris Halpert <chalpert@fb.com>
Date: Fri May 29 14:53:47 2020 -0400
Update flake8 dependency
[33mcommit 7b62290b66fa7771ee217743a6ea54b258b982e2[m
Author: Chris Halpert <chalpert@fb.com>
Date: Fri May 29 14:52:36 2020 -0400
Update history
[33mcommit 0cc29ae6147a5c2bc844dab6084c6706e1c250ca[m
Merge: 033a0db 7708a3f
Author: Chris Halpert <cphalpert@gmail.com>
Date: Fri May 29 14:50:28 2020 -0400
Merge pull request #108 from spotify/tomasl/update-dependencies
Update pandas to 1.0 and python to 3.6
[33mcommit 7708a3f63aa61af662ff599dfadbdab73ea64af7[m
Merge: 39e9892 033a0db
Author: Chris Halpert <cphalpert@gmail.com>
Date: Fri May 29 14:45:13 2020 -0400
Merge branch 'master' into tomasl/update-dependencies
[33mcommit 39e9892fda3e497715409cfd5dacc2c6d50e973c[m
Author: Chris Halpert <chalpert@fb.com>
Date: Fri May 29 14:33:46 2020 -0400
Upgrade pyflakes version in dev requirements
[33mcommit 033a0db6f188b52e0f122435e3354efe3b759e1f[m
Merge: 97ae132 23fca99
Author: Chris Halpert <cphalpert@gmail.com>
Date: Fri May 29 13:53:01 2020 -0400
Merge pull request #107 from gregmuellegger/patch-1
Fix broken link to documentation
[33mcommit 23fca99028d56a5d230b728bb3672f587bfbfa4d[m
Author: Gregor Müllegger <gregor@muellegger.de>
Date: Wed May 27 08:42:05 2020 +0200
Fix broken link to documentation
[33mcommit d34a854c19fb5b22d76238ef6120bc506c3947e5[m
Author: Tomas Aschan <tomasl@spotify.com>
Date: Wed Apr 22 16:19:20 2020 +0200
Use latest tox
Mainly to get a version that includes https://github.com/tox-dev/tox/pull/914
[33mcommit 9ec627450437c0f2c3363ec8f52956b112d5b35c[m
Author: Tomas Aschan <tomasl@spotify.com>
Date: Wed Apr 22 08:42:12 2020 +0200
Update API usage to match latest Pandas
[33mcommit ee98bb0caaaf7b505aa93b12e41715c758f40b61[m
Author: Tomas Aschan <tomasl@spotify.com>
Date: Wed Apr 22 08:41:47 2020 +0200
Drop Python 3.5, add testing for up to 3.9
[33mcommit 97ae132abd1e7ec86a73e04bfe5f14d4be27e2bd[m
Merge: f56743c 3399123
Author: Chris Halpert <cphalpert@gmail.com>
Date: Fri Apr 17 11:43:00 2020 -0400
Merge pull request #105 from munizart/patch-1
Adding docs link to README
[33mcommit 282f3cc9fe71d273220d45f001067a45f9188bb3[m
Author: Tomas Aschan <tomasl@spotify.com>
Date: Fri Apr 17 08:20:58 2020 +0200
Upgrade Pandas requirements to 1.0.0+
[33mcommit 4a53f531350ce3a022b3a70698e986091f1a52ac[m
Author: Tomas Aschan <tomasl@spotify.com>
Date: Mon Mar 23 10:43:12 2020 +0100
Ensure test deps use same versions as prod deps
[33mcommit 33991235fdad960e244ac0620e35fe4dfdd23cba[m
Author: Artur Muniz <arturmunizjr+github@gmail.com>
Date: Mon Mar 16 13:41:31 2020 -0300
Adding docs link to README
Closes #103
[33mcommit f56743ce75b9b00781fc87a03dcee3dc095971c8[m
Merge: 8764b0c 18109a0
Author: Chris Halpert <cphalpert@gmail.com>
Date: Wed Nov 27 15:26:57 2019 -0500
Merge pull request #100 from spotify/add_history_2.7
Update history for 2.7
[33mcommit 18109a0bc440d39d3973d3335144da8ec803c418[m
Author: Chris Halpert <chalpert@spotify.com>
Date: Wed Nov 27 15:24:18 2019 -0500
Add test pypi install to makefile
[33mcommit 89213b11a0d495d4d8fca473aebae4d2eaa330cf[m
Author: Chris Halpert <chalpert@spotify.com>
Date: Wed Nov 27 12:47:23 2019 -0500
Added manifest change to history
[33mcommit 9cadaf453dc75c75baab7903dbcb592e741b2ef4[m
Author: Chris Halpert <chalpert@spotify.com>
Date: Wed Nov 27 12:35:14 2019 -0500
Update history for 2.7
[33mcommit 8764b0c710975a62fe95afc2b46eabe8b175e3e4[m
Merge: 6cdd241 11a363f
Author: Chris Halpert <cphalpert@gmail.com>
Date: Wed Nov 27 12:43:42 2019 -0500
Merge pull request #97 from toddrme2178/patch-1
Include missing requirements file and other files
[33mcommit 11a363ffefff226a6593f6f419b68664b06b3ebf[m
Merge: d3286ef 6cdd241
Author: Chris Halpert <cphalpert@gmail.com>
Date: Wed Nov 27 12:40:02 2019 -0500
Merge branch 'master' into patch-1
[33mcommit 6cdd24129e044e5417319d94877a69cd0502ed2b[m
Merge: 62ca7fa 0ee4219
Author: Chris Halpert <cphalpert@gmail.com>
Date: Wed Nov 27 12:36:48 2019 -0500
Merge pull request #92 from vh920/default_loader
Update default yaml loader
[33mcommit 0ee4219dc0cd599759b2ed31b57333ac5550fbf8[m
Merge: 0d20d47 62ca7fa
Author: Chris Halpert <cphalpert@gmail.com>
Date: Wed Nov 27 12:34:12 2019 -0500
Merge branch 'master' into default_loader
[33mcommit 62ca7fa453b0113f3f98f7e50823d068fd4f12ce[m
Merge: 895470e d8653cc
Author: Chris Halpert <cphalpert@gmail.com>
Date: Wed Nov 27 12:14:19 2019 -0500
Merge pull request #98 from spotify/chris/fix_bokeh_legend
Fix bokeh deprecated legend parameter
[33mcommit d8653cc5239532fdc9d0a21bf59f05b4c33b4ee2[m
Author: Chris Halpert <chalpert@spotify.com>
Date: Fri Nov 22 14:33:18 2019 -0500
Flake8 fixes
[33mcommit 32760d6a6f48f59743be5b0df69a623f79b1a458[m
Author: Chris Halpert <chalpert@spotify.com>
Date: Fri Nov 22 14:21:01 2019 -0500
Add apache license metadata to setup.py
[33mcommit d3286efc64f27a8b209510d28fbb1896d8514391[m
Author: Todd <toddrme2178@gmail.com>
Date: Fri Nov 22 10:43:34 2019 -0500
Include missing requirements file and other files
Also include additional test files and simplify some of the directory inclusion
[33mcommit 7c03a0c7ff6c69356e6d4d0c328e5f9053108a96[m
Author: Chris Halpert <chalpert@spotify.com>
Date: Wed Nov 20 10:56:54 2019 -0500
Fixed legends for radar charts
[33mcommit 3af29e8a47fa5257e6faf5f2dd47baa4db1344e3[m
Author: Chris Halpert <chalpert@spotify.com>
Date: Tue Nov 19 14:28:24 2019 -0500
Fixed legend handling to adjust for deprecated legend keyword
[33mcommit 1cd161d312e49882f01130f97bbfc1b789317a15[m
Author: Chris Halpert <chalpert@spotify.com>
Date: Mon Nov 18 17:07:55 2019 -0500
Add plotting method that selectively removes legend parameter to avoid bokeh error
[33mcommit 9f07430d7054c62dc7274f4d971894f84331c4a1[m
Author: Chris Halpert <chalpert@spotify.com>
Date: Mon Nov 18 16:35:37 2019 -0500
update bokeh and pillow minimum requirements
[33mcommit 0d20d4765c45c3576238b687337c5bb003f17348[m
Author: Veronica <vhsieh@spotify.com>
Date: Wed Aug 21 16:19:22 2019 -0400
remove include
[33mcommit 0b3659551a890aaf7a64266a2b2c27179b336890[m
Author: Veronica <vhsieh@spotify.com>
Date: Wed Aug 21 16:18:00 2019 -0400
remove wrong html
[33mcommit f9b5b085a174507c10616467894d0f14c91f45af[m
Author: Veronica <vhsieh@spotify.com>
Date: Wed Aug 21 16:15:13 2019 -0400
remove virtualenv bin
[33mcommit 48651838e90837602efc351793f1f51b1fbc33a4[m
Author: Veronica <vhsieh@spotify.com>
Date: Wed Aug 21 16:05:56 2019 -0400
add default loader to options.py and colors.py
[33mcommit cacb18a11f6d594d89d93cf423f96546c155b3bc[m
Author: Veronica <vhsieh@spotify.com>
Date: Wed Aug 21 14:27:14 2019 -0400
create environment setup
[33mcommit 895470eb28636d2dba8e9658df8df0ab04ba26ea[m
Merge: 2cf11a5 ab9e7ed
Author: Chris Halpert <cphalpert@gmail.com>
Date: Thu Aug 15 15:27:50 2019 -0400
Merge pull request #88 from spotify/r_2.6.1
2.6.1
[33mcommit ab9e7ed970fe94f925caec91f58db75b7422c267[m
Author: Chris <chalpert@spotify.com>
Date: Thu Aug 15 15:24:25 2019 -0400
Version increment
[33mcommit 2cf11a538b72869b43affb12b7a35054741913b2[m
Merge: 7c2ee19 51add16
Author: Chris Halpert <cphalpert@gmail.com>
Date: Thu Aug 15 15:17:55 2019 -0400
Merge pull request #87 from emschuch/update-packages
update packages to latest version of bokeh
[33mcommit 51add1644d25da669ec1d21a187ffbae1beacde9[m
Author: Emily Schuch <eschuch@spotify.com>
Date: Tue Aug 6 12:16:34 2019 -0400
update packages to latest version of bokeh
[33mcommit 7c2ee1986bd40badeb84535ef9bda8034f341b56[m
Merge: 185260c 9eafdc4
Author: Chris Halpert <cphalpert@gmail.com>
Date: Thu Jul 25 14:13:25 2019 -0400
Merge pull request #85 from mollymzhu/setup
move package to requirements.txt and update setup file
[33mcommit 9eafdc45a7e21c7a09c5fe5c570c788d3ee50346[m
Merge: 2e3189d 185260c
Author: Chris Halpert <cphalpert@gmail.com>
Date: Thu Jul 25 14:03:13 2019 -0400
Merge branch 'master' into setup
[33mcommit 185260cbf30dac12f6e2db3c5419004ac37a66d7[m
Merge: e188526 5d4c92f
Author: Chris Halpert <cphalpert@gmail.com>
Date: Thu Jul 25 14:02:55 2019 -0400
Merge pull request #79 from Bharat123rox/fix-docs
Fix bug in README while generating docs
[33mcommit 2e3189db376961915c11be5cef42f3f73e3edd2a[m
Author: Molly Zhu <mzhu@spotify.com>
Date: Wed Jul 24 17:51:05 2019 -0400
fix typo
[33mcommit f40f612f39de12b974c5c3675719aa03b5aba0a9[m
Author: Molly Zhu <mzhu@spotify.com>
Date: Wed Jul 24 17:50:09 2019 -0400