python / release-tools

Scripts for making (C)Python releases
41 stars 34 forks source link

Remove space from '32 -bit' #147

Closed hugovk closed 4 months ago

hugovk commented 4 months ago

Re: https://discuss.python.org/t/why-is-there-an-extra-space-in-download-windows-installer-32-bit/46589.

Since https://github.com/python/release-tools/commit/819af73e38603262ae80b718535a6fabfa35386f, there's been a rogue space in "Windows installer (32 -bit)" on download pages, for example:

https://www.python.org/downloads/release/python-3124/

This will fix future uploads. Ee can then do a query to fix old ones.

ewdurbin commented 4 months ago
app=> begin;
BEGIN
app=*> update downloads_releasefile set name='Windows installer (32-bit)' where name ='Windows installer (32 -bit)';
UPDATE 39
app=*> commit;