diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-03-07 21:17:34 +0000 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-03-07 21:48:39 +0000 |
commit | bd04fc60505619755508ab8736286c6c6bc661b9 (patch) | |
tree | 05c726f8550b757e21822c086deffcb2e2318a67 /setuptools/command/dist_info.py | |
parent | 529efe7bc944202f19fec1f406958f1485e4056a (diff) | |
download | python-setuptools-git-bd04fc60505619755508ab8736286c6c6bc661b9.tar.gz |
Cluster deprecations due_date
Diffstat (limited to 'setuptools/command/dist_info.py')
-rw-r--r-- | setuptools/command/dist_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/dist_info.py b/setuptools/command/dist_info.py index 69d331fb..99d3976d 100644 --- a/setuptools/command/dist_info.py +++ b/setuptools/command/dist_info.py @@ -50,7 +50,7 @@ class dist_info(Command): def finalize_options(self): if self.egg_base: msg = "--egg-base is deprecated for dist_info command. Use --output-dir." - SetuptoolsDeprecationWarning.emit(msg, due_date=(2023, 8, 23)) + SetuptoolsDeprecationWarning.emit(msg, due_date=(2023, 9, 26)) # This command is internal to setuptools, therefore it should be safe # to remove the deprecated support soon. self.output_dir = self.egg_base or self.output_dir |