Fix all PEP-008 issues
This commit is contained in:
@@ -1,5 +1,9 @@
|
||||
from setuptools import setup, Extension
|
||||
import sys, os
|
||||
import os
|
||||
|
||||
from setuptools import (
|
||||
Extension,
|
||||
setup,
|
||||
)
|
||||
|
||||
# explode if environment isn't correct, as set in CIBW_ENVIRONMENT
|
||||
CIBW_TEST_VAR = os.environ.get('CIBW_TEST_VAR')
|
||||
@@ -15,7 +19,6 @@ if '/opt/cibw_test_path' not in PATH:
|
||||
if '$PATH' in PATH:
|
||||
raise Exception('$PATH should be expanded in PATH. It was "%s"' % PATH)
|
||||
|
||||
|
||||
setup(
|
||||
name="spam",
|
||||
ext_modules=[Extension('spam', sources=['spam.c'])],
|
||||
|
||||
Reference in New Issue
Block a user