1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Andreas Tille <tille@debian.org>
Date: Sat, 29 Jun 2024 18:48:41 -0700
Subject: Fix import of BaseProvider
Last-Update: 2023-08-14
---
src/pdm/cli/commands/venv/utils.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/pdm/cli/commands/venv/utils.py b/src/pdm/cli/commands/venv/utils.py
index f631797..aaee0f8 100644
--- a/src/pdm/cli/commands/venv/utils.py
+++ b/src/pdm/cli/commands/venv/utils.py
@@ -5,7 +5,8 @@ import hashlib
import typing as t
from pathlib import Path
-from findpython import BaseProvider, PythonVersion
+from findpython import PythonVersion
+from findpython.providers.base import BaseProvider
from pdm.exceptions import PdmUsageError
from pdm.models.venv import VirtualEnv
|