[GH-ISSUE #522] Unable to check for updates #403

Closed
opened 2026-02-26 12:21:29 +03:00 by kerem · 4 comments
Owner

Originally created by @AutoRunFish on GitHub (Mar 1, 2025).
Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/522

Originally assigned to: @AutoRunFish on GitHub.

Image

Originally created by @AutoRunFish on GitHub (Mar 1, 2025). Original GitHub issue: https://github.com/brentvollebregt/auto-py-to-exe/issues/522 Originally assigned to: @AutoRunFish on GitHub. ![Image](https://github.com/user-attachments/assets/8f9818a8-bce9-48b3-b3de-48d445352c72)
kerem 2026-02-26 12:21:29 +03:00
Author
Owner

@github-actions[bot] commented on GitHub (Mar 1, 2025):

👋 Hi, just a reminder that if you haven't read the help post yet, give it a read to see if your issue is covered in it and make sure to follow the debugging section.

Also please note, as stated in the README, if your issue is only associated with your application and not auto-py-to-exe itself, please do not create an issue in this repository - instead, comment on the help post, video or create a new discussion.

<!-- gh-comment-id:2691862494 --> @github-actions[bot] commented on GitHub (Mar 1, 2025): 👋 Hi, just a reminder that if you haven't read [the help post](https://nitratine.net/blog/post/issues-when-using-auto-py-to-exe/) yet, give it a read to see if your issue is covered in it and make sure to follow [the debugging section](https://nitratine.net/blog/post/issues-when-using-auto-py-to-exe/#debugging). Also please note, as stated in the README, if your issue is only associated with your application and not auto-py-to-exe itself, please do not create an issue in this repository - instead, comment on the help [post](https://nitratine.net/blog/post/issues-when-using-auto-py-to-exe/), [video](https://youtu.be/OZSZHmWSOeM) or create a [new discussion](https://github.com/brentvollebregt/auto-py-to-exe/discussions).
Author
Owner

@brentvollebregt commented on GitHub (Mar 1, 2025):

I see I never output the error when these calls fail.

If you update __get_latest_version_for_library in ./auto_py_to_exe/utils.py to,

def __get_latest_version_for_library(library_repo):
    try:
        response = requests.get(f"https://api.github.com/repos/{library_repo}/releases/latest")
        response.raise_for_status()
        response_data = response.json()
        latest_release_tag_name = response_data["tag_name"].strip("v")
        return PackageVersion(latest_release_tag_name.strip("v"), response_data["html_url"])
    except requests.exceptions.RequestException  as error:
        print (error)
        return None

and then re-run, what shows up in the console?

<!-- gh-comment-id:2692083900 --> @brentvollebregt commented on GitHub (Mar 1, 2025): I see I never output the error when these calls fail. If you update `__get_latest_version_for_library` in `./auto_py_to_exe/utils.py` to, ```py def __get_latest_version_for_library(library_repo): try: response = requests.get(f"https://api.github.com/repos/{library_repo}/releases/latest") response.raise_for_status() response_data = response.json() latest_release_tag_name = response_data["tag_name"].strip("v") return PackageVersion(latest_release_tag_name.strip("v"), response_data["html_url"]) except requests.exceptions.RequestException as error: print (error) return None ``` and then re-run, what shows up in the console?
Author
Owner

@github-actions[bot] commented on GitHub (Apr 21, 2025):

This issue is stale because it has been open for 60 days with no activity. Remove stale label or comment on this issue or it will be closed in 5 days.

<!-- gh-comment-id:2817451828 --> @github-actions[bot] commented on GitHub (Apr 21, 2025): This issue is stale because it has been open for 60 days with no activity. Remove stale label or comment on this issue or it will be closed in 5 days.
Author
Owner

@github-actions[bot] commented on GitHub (Apr 27, 2025):

Closing issue due to no activity in more than 60 days.

<!-- gh-comment-id:2832857731 --> @github-actions[bot] commented on GitHub (Apr 27, 2025): Closing issue due to no activity in more than 60 days.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/auto-py-to-exe#403
No description provided.