summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorniuke <niuke19970315@163.com>2022-08-13 08:42:03 +0800
committerniuke <niuke19970315@163.com>2022-08-13 08:42:20 +0800
commit0a5932f537be661f2aba89d13ab3759432922289 (patch)
treefa2b01c0ede95671273fbb42133e3095317be5ca
parent21b5f4f3fa07b650b66c649e372fe99c6e411ef8 (diff)
downloadoslotest-0a5932f537be661f2aba89d13ab3759432922289.tar.gz
Cleanup py27 support
This repo is now testing only with Python 3, so let's make a few cleanups: - Remove python 2.7 stanza from setup.py Change-Id: Ie233ab07100e84c97995468a75f82e932831328f
-rw-r--r--setup.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/setup.py b/setup.py
index fec7777..cd35c3c 100644
--- a/setup.py
+++ b/setup.py
@@ -15,14 +15,6 @@
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>=2.0.0'],
pbr=True)