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 | |
parent | 529efe7bc944202f19fec1f406958f1485e4056a (diff) | |
download | python-setuptools-git-bd04fc60505619755508ab8736286c6c6bc661b9.tar.gz |
Cluster deprecations due_date
Diffstat (limited to 'setuptools/command')
-rw-r--r-- | setuptools/command/bdist_rpm.py | 2 | ||||
-rw-r--r-- | setuptools/command/dist_info.py | 2 | ||||
-rw-r--r-- | setuptools/command/egg_info.py | 4 | ||||
-rw-r--r-- | setuptools/command/upload_docs.py | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/setuptools/command/bdist_rpm.py b/setuptools/command/bdist_rpm.py index e9e5c1b6..047a6d08 100644 --- a/setuptools/command/bdist_rpm.py +++ b/setuptools/command/bdist_rpm.py @@ -20,7 +20,7 @@ class bdist_rpm(orig.bdist_rpm): Use bdist_wheel (wheel packages) instead. """, see_url="https://github.com/pypa/setuptools/issues/1988", - due_date=(2023, 10, 22) # Deprecation introduced in 22 Oct 2021. + due_date=(2023, 10, 30) # Deprecation introduced in 22 Oct 2021. ) # ensure distro name is up-to-date 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 diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 8063cea6..f5163ae7 100644 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -338,7 +338,7 @@ class egg_info(InfoCommon, Command): Please rename {bei!r} to {self.egg_info!r} to correct this problem. """, - due_date=(2023, 9, 1), + due_date=(2023, 6, 1), # Old warning, introduced in 2005, might be safe to remove soon ) self.broken_egg_info = self.egg_info @@ -714,7 +714,7 @@ def warn_depends_obsolete(cmd, basename, filename): Configure your dependencies via `setup.cfg` or `pyproject.toml` instead. """, see_docs="userguide/declarative_config.html", - due_date=(2023, 9, 1), + due_date=(2023, 6, 1), # Old warning, introduced in 2005, it might be safe to remove soon. ) diff --git a/setuptools/command/upload_docs.py b/setuptools/command/upload_docs.py index dddde609..077c9d2f 100644 --- a/setuptools/command/upload_docs.py +++ b/setuptools/command/upload_docs.py @@ -97,7 +97,7 @@ class upload_docs(upload): Instead, use tools like devpi and Read the Docs; or lower level tools like httpie and curl to interact directly with your hosting service API. """, - due_date=(2023, 9, 27), # warning introduced in 27 Jul 2022 + due_date=(2023, 9, 26), # warning introduced in 27 Jul 2022 ) # Run sub commands |