Owez / owpm

owpm, the simple python package manager.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ensure `rem` does not delete 2 packages of same version

owpm opened this issue · comments

commented

Similar TODO issue as issue 1:

for package in proj.packages:
    if package.name in names and package.is_dev == dev:
        found.append(
            package
        )  # TODO: make sure it doesnt delete 2 different verions with same name
        removed_any_pkg = True

Quite an edge case.