diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-03 22:17:12 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-02-05 09:23:01 -0500 |
commit | 4cbbb99a953ac5b1fec3b1dfdd106a7781f4293d (patch) | |
tree | 12ec09db8d0a3f6f7e58cbca59277200e6a53ed2 /setuptools/command/bdist_egg.py | |
parent | e9cde4e51a38ae232897aa73b8be5af1a18d46fe (diff) | |
download | python-setuptools-git-4cbbb99a953ac5b1fec3b1dfdd106a7781f4293d.tar.gz |
Move ensure_directory into setuptools.
Diffstat (limited to 'setuptools/command/bdist_egg.py')
-rw-r--r-- | setuptools/command/bdist_egg.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/setuptools/command/bdist_egg.py b/setuptools/command/bdist_egg.py index e6b1609f..11a1c6be 100644 --- a/setuptools/command/bdist_egg.py +++ b/setuptools/command/bdist_egg.py @@ -11,9 +11,10 @@ import re import textwrap import marshal -from pkg_resources import get_build_platform, Distribution, ensure_directory +from pkg_resources import get_build_platform, Distribution from setuptools.extension import Library from setuptools import Command +from .._path import ensure_directory from sysconfig import get_path, get_python_version |