Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions binaries/fpgadiag/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

from setuptools import setup, find_namespace_packages
from setuptools import Extension, setup, find_namespace_packages
from setuptools.command.build_ext import build_ext
from distutils.extension import Extension

# get the original build_extensions method
original_build_extensions = build_ext.build_extensions
Expand Down
3 changes: 1 addition & 2 deletions binaries/opae.io/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

from setuptools import find_namespace_packages
from distutils.core import Extension, setup
from setuptools import Extension, setup, find_namespace_packages

setup(
name='opae.io',
Expand Down
4 changes: 1 addition & 3 deletions libraries/pyopae/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

from setuptools import setup, find_namespace_packages
from setuptools import Extension, setup, find_namespace_packages
from setuptools.command.build_ext import build_ext
from distutils.extension import Extension


# get the original build_extensions method
original_build_extensions = build_ext.build_extensions
Expand Down
3 changes: 1 addition & 2 deletions libraries/pyopaeuio/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.

from setuptools import setup, find_packages
from setuptools import Extension, setup, find_packages
from setuptools.command.build_ext import build_ext
from distutils.extension import Extension

# get the original build_extensions method
original_build_extensions = build_ext.build_extensions
Expand Down
Loading