mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-05 04:05:04 +00:00
refactor: Improve version handling and cleanup version-related files
This commit is contained in:
parent
295040c94c
commit
0dbaec553f
5 changed files with 17 additions and 9 deletions
|
@ -949,6 +949,10 @@ def is_first_run_of_new_version(io, verbose=False):
|
|||
installs_file = Path.home() / ".aider" / "installs.json"
|
||||
key = (__version__, sys.executable)
|
||||
|
||||
# Never show notes for .dev versions
|
||||
if ".dev" in __version__:
|
||||
return False
|
||||
|
||||
if verbose:
|
||||
io.tool_output(
|
||||
f"Checking imports for version {__version__} and executable {sys.executable}"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue