From e664046ea4bf75133e3827690a70db9f52251153 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Wed, 14 Jun 2023 04:13:00 +0900 Subject: [PATCH] Remove some notes no longer valid setup.py is no longer maintained by the global sync. Also the note in requirements.txt does not apply since pip 20.3. This also removes workaround for old python which we no longer support. [1] https://lists.openstack.org/pipermail/openstack-discuss/2023-June/034073.html Change-Id: I1b79e398e6daa9d2dc7885c2faee60323547c446 --- requirements.txt | 4 ---- setup.py | 9 --------- 2 files changed, 13 deletions(-) diff --git a/requirements.txt b/requirements.txt index eee4e126..eee67ed6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,3 @@ -# The order of packages is significant, because pip processes them in the order -# of appearance. Changing the order has an impact on the overall integration -# process, which may cause wedges in the gate later. - pbr>=2.0 setuptools>=17.1 eventlet>=0.17.4 # MIT diff --git a/setup.py b/setup.py index 73637574..c0a24eab 100644 --- a/setup.py +++ b/setup.py @@ -14,17 +14,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT import setuptools -# In python < 2.7.4, a lazy loading of package `pbr` will break -# setuptools if some other modules registered functions in `atexit`. -# solution from: http://bugs.python.org/issue15881#msg170215 -try: - import multiprocessing # noqa -except ImportError: - pass - setuptools.setup( setup_requires=['pbr'], pbr=True)