-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhancement: Add check for updates and allow for autoupdating inside spyder #2307
Comments
Looks interesting. That would help decreasing bug reports from outdated versions of spyder. |
Indeed! one of my major concerns with this |
This is a good idea indeed! Perhaps the simplest thing to do to solve this one would be to use the Github API to check for the latest release and report that in a The only thing is that I wouldn't like to rely on |
Great :), Just out of curiosity why not relying on requests? |
To not add another dependency I guess. And marking it as optional would defeat the feature which is more oriented towards debutant users. |
@Nodd seems to read my mind!! Yeap, that's exactly my thinking on |
|
Ok, so on this one, the github api has some rate limits, right now it is 60... so if someone opens and closes spyder more than 60 times, the api would complain about it. |
The rate limit restarts every hour. So for this to happen, users should open and close Spyder every minute ;-) This also means that these checks shouldn't be applied when |
Implemented in #2321 |
It would be very good to have a check for updates button under the
help
menu (i guess).Also this check could be run on startup so the user gets a notification when an update is available and offer the install update option.
Now to handle the update we could:
Comments?
The text was updated successfully, but these errors were encountered: