Skip to content

Commit

Permalink
Merge pull request #5636 from pypa/emergency-bugfix
Browse files Browse the repository at this point in the history
Fix import issue with pipenv 2023.3.18.
  • Loading branch information
matteius committed Mar 19, 2023
2 parents d826170 + cadae1b commit 4d96c3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions news/5636.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix import error in virtualenv utility for creating new environments caused by ``2023.3.18`` release.
2 changes: 1 addition & 1 deletion pipenv/utils/virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def abort(msg=""):
err=True,
)
# check for python installers
from .installers import Asdf, InstallerError, InstallerNotFound, Pyenv
from pipenv.installers import Asdf, InstallerError, InstallerNotFound, Pyenv

# prefer pyenv if both pyenv and asdf are installed as it's
# dedicated to python installs so probably the preferred
Expand Down

0 comments on commit 4d96c3b

Please sign in to comment.