summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorniuke <niuke19970315@163.com>2022-08-13 09:17:24 +0800
committerniuke <niuke19970315@163.com>2022-08-13 09:17:33 +0800
commitf7bab2374f51d9efd311a7216f9064d07aaecfac (patch)
treecc40b07ead3db10f1f9ed0222b4f2563c7cdaf71
parentf388eb981dacd3f363fb23fd70ac22c5eb35edf8 (diff)
downloadoslo-context-f7bab2374f51d9efd311a7216f9064d07aaecfac.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: I49a8b75ee2696632d105abc23d8a467e8c157179
-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)