Skip to content

Commit

Permalink
Move Python 3.11 compatibility into compat module.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Feb 8, 2024
1 parent c4156a9 commit 5d6120a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setuptools/command/easy_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
DEVELOP_DIST,
)
import pkg_resources
from .. import py312compat
from ..compat import py311
from .._path import ensure_directory
from ..extern.jaraco.text import yield_lines

Expand Down Expand Up @@ -2329,7 +2329,7 @@ def load_launcher_manifest(name):


def _rmtree(path, ignore_errors=False, onexc=auto_chmod):
return py312compat.shutil_rmtree(path, ignore_errors, onexc)
return py311.shutil_rmtree(path, ignore_errors, onexc)


def current_umask():
Expand Down
File renamed without changes.

0 comments on commit 5d6120a

Please sign in to comment.