Skip to content

Commit

Permalink
Remove unused globals from setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed May 25, 2015
1 parent cec7592 commit add078b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
VERSION = "4.2.0.dev0"

import os
import platform
import sys
from setuptools import setup, find_packages

Expand All @@ -35,11 +34,6 @@
print("This version of ZODB requires Python 3.2 or higher")
sys.exit(0)

PY3 = sys.version_info >= (3,)
PY27 = sys.version_info >= (2,7)
py_impl = getattr(platform, 'python_implementation', lambda: None)
PYPY = py_impl() == 'PyPy'


# The (non-obvious!) choices for the Trove Development Status line:
# Development Status :: 5 - Production/Stable
Expand Down

0 comments on commit add078b

Please sign in to comment.