diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-03-06 19:01:07 +0000 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-03-06 19:01:38 +0000 |
commit | 384d0c49740cf666771b44139d514af7d6437d6c (patch) | |
tree | 834a2839e27a0e6cca639a3596123a7635cdbbbc /setuptools/command/build_py.py | |
parent | 0f050a1cf4e71d79fb4402fe7ccbfcb148120234 (diff) | |
download | python-setuptools-git-384d0c49740cf666771b44139d514af7d6437d6c.tar.gz |
Import SetuptoolsDeprecationWarning from setuptools.warnings
Diffstat (limited to 'setuptools/command/build_py.py')
-rw-r--r-- | setuptools/command/build_py.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/build_py.py b/setuptools/command/build_py.py index ec062742..14094f8d 100644 --- a/setuptools/command/build_py.py +++ b/setuptools/command/build_py.py @@ -13,7 +13,7 @@ import warnings from pathlib import Path from typing import Dict, Iterable, Iterator, List, Optional, Tuple -from setuptools._deprecation_warning import SetuptoolsDeprecationWarning +from setuptools.warnings import SetuptoolsDeprecationWarning from setuptools.extern.more_itertools import unique_everseen |