Replace vistir.compat.Path with built-in pathlib.Path

Built-in since Python3.5. We only support later versions.
This commit is contained in:
Oz N Tiram
2022-05-12 19:29:40 +02:00
parent c3fddce41a
commit d497caa29e
+1 -1
View File
@@ -944,10 +944,10 @@ def venv_resolve_deps(
import json
import tempfile
from pathlib import Path
from pipenv import resolver
from pipenv._compat import decode_for_output
from pipenv.vendor.vistir.compat import Path
results = []
pipfile_section = "dev-packages" if dev else "packages"