mirror of
https://github.com/openbabel/openbabel.git
synced 2025-02-25 18:55:23 -06:00
Do not use six
This commit is contained in:
@@ -51,7 +51,10 @@ else:
|
||||
from . import openbabel as ob
|
||||
_obfuncs = _obconsts = ob
|
||||
try:
|
||||
from six.moves import tkinter as tk
|
||||
if sys.version_info[0] >= 3:
|
||||
import tkinter as tk
|
||||
else:
|
||||
import Tkinter as tk
|
||||
from PIL import Image as PIL
|
||||
from PIL import ImageTk as piltk
|
||||
except ImportError: # pragma: no cover
|
||||
|
||||
@@ -126,7 +126,6 @@ setup(
|
||||
zip_safe=False,
|
||||
cmdclass={'build': CustomBuild, 'build_ext': CustomBuildExt, 'install': CustomInstall, 'sdist': CustomSdist},
|
||||
packages=['openbabel'],
|
||||
install_requires=[six],
|
||||
ext_modules=[obextension],
|
||||
classifiers=[
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
|
||||
Reference in New Issue
Block a user