Re: Leo 5.9-b1 released, "devel" is open, TravisCI fails

2019-04-13 Thread Edward K. Ream
On Fri, Apr 12, 2019 at 10:07 PM Matt Wilkie  wrote:

> Ahhh, there are two git tags which look like the same version number
> `5.9-b1` and `v5.9-1`, both referencing the same commit.
>
...

> For reduced future confusion one of the two 5.9-b1 git tags could be
> deleted. I don't think it matters which one.
>

Thanks.  I deleted the tag that didn't start with v and pushed the tag
change. Now the 5.9-b1-rel branch passes.  Thanks for your help.

Edward

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to leo-editor+unsubscr...@googlegroups.com.
To post to this group, send email to leo-editor@googlegroups.com.
Visit this group at https://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.


Re: Leo 5.9-b1 released, "devel" is open, TravisCI fails

2019-04-12 Thread Matt Wilkie
Ahhh, there are two git tags which look like the same version number 
`5.9-b1` and `v5.9-1`, both referencing the same commit.

The setup.py *clean_git_tag()* logic for normalizing the various patterns 
Leo's release tags have used over the years:

def clean_git_tag(tag):
'''Return only version number from tag name. Ignore unkown formats.
   Is specific to tags in Leo's repository.
5.7b1  -->5.7b1
Leo-4-4-8-b1   -->4-4-8-b1
v5.3   -->5.3
Fixed-bug-149  -->  Fixed-bug-149
'''
if tag.lower().startswith('leo-'): tag = tag[4:]
if tag.lower().startswith('v'): tag = tag[1:]
return tag

So the Travis buld error this time is harmless and can be ignored. For 
reduced future confusion one of the two 5.9-b1 git tags could be deleted. I 
don't think it matters which one.

matt

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to leo-editor+unsubscr...@googlegroups.com.
To post to this group, send email to leo-editor@googlegroups.com.
Visit this group at https://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.


Re: Leo 5.9-b1 released, "devel" is open, TravisCI fails

2019-04-12 Thread Matt Wilkie
Looking into it. At first blush it looks like the same filename has been 
uploaded already (pypi only allows a name to be used once, ever)

matt

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to leo-editor+unsubscr...@googlegroups.com.
To post to this group, send email to leo-editor@googlegroups.com.
Visit this group at https://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.


Re: Leo 5.9-b1 released, "devel" is open, TravisCI fails

2019-04-12 Thread Edward K. Ream
On Fri, Apr 12, 2019 at 12:22 PM Mike Hodson  wrote:

> Searching the log for 'Error' case sensitively brings this to light; 
> something seems to not like the same file name
>
> Yeah.  I expect Matt will know what is going on.

Edward

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to leo-editor+unsubscr...@googlegroups.com.
To post to this group, send email to leo-editor@googlegroups.com.
Visit this group at https://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.


Re: Leo 5.9-b1 released, "devel" is open, TravisCI fails

2019-04-12 Thread Mike Hodson
Searching the log for 'Error' case sensitively brings this to light;
something seems to not like the same file name


---


Uploading distributions to https://upload.pypi.org/legacy/
Uploading leo-5.9b1-py2.py3-none-any.whl

100%| 8.93M/8.93M [00:01<00:00, 7.67MB/s]
NOTE: Try --verbose to see response content.
HTTPError: 400 Client Error: File already exists. See
https://pypi.org/help/#file-name-reuse for url:
https://upload.pypi.org/legacy/


---


Mike



On Fri, Apr 12, 2019, 09:20 Edward K. Ream  wrote:

> Not sure what happened with TravisCI, but the point of this release
>  is to test
> distribution issues.
>
> Matt, please examine the (long!) raw log
>  and let me know if I
> need to fix anything.
>
> The devel branch must maintain Python 2 compatibility until Leo 5.9-final
> goes out the door.  After that, I'll merge the py3 branch into devel, and
> Python 2 will be a thing of the past.
>
> Edward
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "leo-editor" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to leo-editor+unsubscr...@googlegroups.com.
> To post to this group, send email to leo-editor@googlegroups.com.
> Visit this group at https://groups.google.com/group/leo-editor.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to leo-editor+unsubscr...@googlegroups.com.
To post to this group, send email to leo-editor@googlegroups.com.
Visit this group at https://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/d/optout.