Skip to content

Commit f5681cf

Browse files
committed
update release file
1 parent 3977043 commit f5681cf

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

RELEASES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
#### New features
77

8+
- A brand new logo for POT (PR #357)
89
- Better list of related examples in quick start guide with `minigallery` (PR #334).
910
- Add optional log-domain Sinkhorn implementation in WDA to support smaller values
1011
of the regularization parameter (PR #336).

examples/others/plot_logo.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
Logo of the POT toolbox
66
=======================
77
8-
In this example plot the logo of the POT toolbox.
8+
In this example we plot the logo of the POT toolbox.
99
10-
A specificity of this logo is that it is done 100% i python and generated using
10+
A specificity of this logo is that it is done 100% in Python and generated using
1111
matplotlib using the EMD solver from POT.
1212
1313
"""
@@ -84,11 +84,10 @@
8484

8585
pl.axis('equal')
8686
pl.axis('off')
87-
#pl.ylim(min(x1[:,1].min(),x2[:,1].min())-1,max(x1[:,1].max(),x2[:,1].max())+1)
8887

8988
# Save logo file
90-
pl.savefig('logo.svg', dpi=150, bbox_inches='tight')
91-
pl.savefig('logo.png', dpi=150, bbox_inches='tight')
89+
# pl.savefig('logo.svg', dpi=150, bbox_inches='tight')
90+
# pl.savefig('logo.png', dpi=150, bbox_inches='tight')
9291

9392
# %%
9493
# Plot the logo (dark background)
@@ -109,5 +108,5 @@
109108
pl.axis('off')
110109

111110
# Save logo file
112-
pl.savefig('logo_dark.svg', dpi=150, transparent=True, bbox_inches='tight')
113-
pl.savefig('logo_dark.png', dpi=150, transparent=True, bbox_inches='tight')
111+
# pl.savefig('logo_dark.svg', dpi=150, transparent=True, bbox_inches='tight')
112+
# pl.savefig('logo_dark.png', dpi=150, transparent=True, bbox_inches='tight')

0 commit comments

Comments
 (0)