remove sorting for repo key for additional_deps

in other languages this order can matter (such as ruby)
This commit is contained in:
Anthony Sottile 2023-02-22 20:31:14 -05:00
parent cdd360645a
commit a631abdabf
3 changed files with 3 additions and 3 deletions

View file

@ -33,7 +33,7 @@ def _state_filename_v2(venv: str) -> str:
def _state(additional_deps: Sequence[str]) -> object:
return {'additional_dependencies': sorted(additional_deps)}
return {'additional_dependencies': additional_deps}
def _read_state(venv: str) -> object | None: