Eddie

Results 26 comments of Eddie

Not sure, I haven't had the time to look into it much. Here's an answer on Stack Overflow: https://stackoverflow.com/a/65018686/955014 A simpler solution could be to just wrap the assignments of...

Ah, the problem was that I generated the file with `pip freeze > requirements.txt`, which locked pip-upgrader to a specific version. `requirements.txt`: ``` ... pip-upgrader==1.4.0 ... ``` crashes. `requirements.txt`: ```...

Could you reproduce the bug? For some reason [vers for vers in all_versions if not vers.is_prerelease and not vers.is_postrelease] produces an empty list. Adding a guard clause before running `max()`...

I can't reproduce it on my laptop at home either :/ I.e., both versions worked fine with `pip-upgrader==1.4.0` in requirements.txt. I will see if I can find the root cause...

The problematic package *is* pip-upgrade, in my venv at work. I've done some digging and it seems the line versions_match = re.findall(pattern, response.content.decode('utf-8'), flags=re.IGNORECASE) produces an empty list for the...

Why this doesn't happen on my laptop, or for you at all, I cannot say.

Yes, you are correct; that worked with no issue. At work we should generally go through the custom index (which *should* pull requested packages from PyPI if they don't exist)....

Do you know what Artifactory is? It's a commercial paid for product. I'm not sure you need Artifactory to test the issue, but there's a free trial here: https://www.jfrog.com/artifactory/free-trial/ Maybe...

I know this tool was initially developed to evaluate students' performance. I forgot to mention that in the issue description, since I tried to keep it succinct and to the...

Usage example ``` $ sconsify -h | grep proxy -proxy Specify a proxy in the form [user:passwd@]proxy.server:port $ sconsify -proxy exampleproxy.com:5432 ``` (In my case I don't need user/pw for...