aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2017-10-11 09:15:58 +0200
committerJason R. Coombs <jaraco@jaraco.com>2017-10-11 09:15:58 +0200
commit84a97be0633f526de2f24b096d5fd1bf1cd75ac6 (patch)
treebb790fd809fba9734bab2c4aeacd486216fc17f7 /setuptools
parentb67a4c32b19df8b4bf65eb7edc68ba71865787ae (diff)
downloadexternal_python_setuptools-84a97be0633f526de2f24b096d5fd1bf1cd75ac6.tar.gz
external_python_setuptools-84a97be0633f526de2f24b096d5fd1bf1cd75ac6.tar.bz2
external_python_setuptools-84a97be0633f526de2f24b096d5fd1bf1cd75ac6.zip
Remove unused variable
Diffstat (limited to 'setuptools')
-rw-r--r--setuptools/pep517.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/setuptools/pep517.py b/setuptools/pep517.py
index 4032c5bb..b3e9ea86 100644
--- a/setuptools/pep517.py
+++ b/setuptools/pep517.py
@@ -35,9 +35,6 @@ from setuptools import dist
from setuptools.dist import SetupRequirementsError
-SETUPTOOLS_IMPLEMENTATION_REVISION = 0.1
-
-
def _run_setup(setup_script='setup.py'):
# Note that we can reuse our build directory between calls
# Correctness comes first, then optimization later