diff --git a/setup.cfg b/setup.cfg index 378373b..3356915 100644 --- a/setup.cfg +++ b/setup.cfg @@ -12,16 +12,3 @@ classifier = Intended Audience :: System Administrators License :: OSI Approved :: Apache Software License Operating System :: POSIX :: Linux - -[egg_info] -tag_build = -tag_date = 0 -tag_svn_revision = 0 - -[wheel] -universal = 1 - -[pbr] -# Treat sphinx warnings as errors during the docs build; this helps us keep -# the documentation clean. -warnerrors = true diff --git a/setup.py b/setup.py index 782bb21..0cdc8c2 100644 --- a/setup.py +++ b/setup.py @@ -13,17 +13,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>=1.8'], pbr=True) diff --git a/tox.ini b/tox.ini index e46a7c5..fbd30da 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,6 @@ envlist = pep8,validate skipdist = True [testenv] -install_command = pip install -U {opts} {packages} setenv = VIRTUAL_ENV={envdir} basepython = python3