Skip to content
Snippets Groups Projects
Commit 12447326 authored by Stefano Borini's avatar Stefano Borini Committed by GitHub
Browse files

Merge pull request #6 from force-h2020/six-compatibility

Six compatibility
parents 14292dc4 b08b44f3
No related branches found
No related tags found
No related merge requests found
import abc
import six
class BaseDataSource(metaclass=abc.ABCMeta):
class BaseDataSource(six.with_metaclass(abc.ABCMeta)):
def __init__(self, bundle, application, model):
self.bundle = bundle
self.application = application
......
import abc
import six
class BaseMultiCriteriaOptimizer(metaclass=abc.ABCMeta):
class BaseMultiCriteriaOptimizer(six.with_metaclass(abc.ABCMeta)):
def __init__(self, bundle, application, model):
self.bundle = bundle
self.application = application
......
envisage==4.6.0
click==6.7
six==1.10.0
stevedore==1.24.0
......@@ -20,6 +20,7 @@ setup(
install_requires=[
"envisage >= 4.6.0",
"click >= 6.7",
"stevedore >= 1.24.0"
"stevedore >= 1.24.0",
"six >= 1.10.0"
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment