diff -r b201a2ffe174 -r be84ff69f30e eric7/UI/UserInterface.py --- a/eric7/UI/UserInterface.py Sun Jul 03 18:09:29 2022 +0200 +++ b/eric7/UI/UserInterface.py Mon Jul 04 17:21:56 2022 +0200 @@ -1695,7 +1695,11 @@ else: filename = os.path.join(getConfig("ericDir"), "eric7installpip.json") - if os.path.exists(filename): + if ( + os.path.exists(filename) and + os.path.getmtime(filename) > + os.path.getmtime(installInfoFile) + ): # eric was updated via pip (i.e. eric-ide) # just update the installation date and time installDateTime = datetime.datetime.now(tz=None)