summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorniuke <niuke19970315@163.com>2022-08-13 09:48:05 +0800
committerniuke <niuke19970315@163.com>2022-08-13 09:48:11 +0800
commitc7d214bae413769a8160ea8e0e71b57166206d84 (patch)
tree86e662125d3f276e44bd24c5503230ba0bea00d3
parent052b2f23572900601b0f41387dbbb07153d88982 (diff)
downloadoslo-concurrency-c7d214bae413769a8160ea8e0e71b57166206d84.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: I89ea0dab79cdc53c164c171a42a06f2a6d6aefad
-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)