mirror of https://github.com/YosysHQ/abc.git
pyabc: python 2.6 compatibility fix for previous commit (which silenced warnings)
This commit is contained in:
parent
af51bdaf3e
commit
4ade9fc7c8
|
|
@ -1,10 +1,10 @@
|
||||||
import sys
|
import sys
|
||||||
import sysconfig
|
|
||||||
|
|
||||||
from distutils.core import setup, Extension
|
from distutils.core import setup, Extension
|
||||||
from distutils.sysconfig import get_config_vars
|
from distutils.sysconfig import get_config_vars
|
||||||
from distutils import util
|
from distutils import util
|
||||||
from distutils.command.build_ext import build_ext
|
from distutils.command.build_ext import build_ext
|
||||||
|
from distutils import sysconfig
|
||||||
|
|
||||||
define_macros = []
|
define_macros = []
|
||||||
libraries = []
|
libraries = []
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue