Remove six leftovers

We should not be using six anymore.
Also add specific python 3.8 support mention to setup.cfg

Change-Id: If0689f47e9c2f7382c5e763f23b7f7f5ef323d5b
This commit is contained in:
Riccardo Pittau 2020-11-09 12:23:07 +01:00
parent 1f61fc1eca
commit 124652f895
4 changed files with 7 additions and 3 deletions

View File

@ -19,6 +19,7 @@ classifier =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[files]
packages =

View File

@ -13,8 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from unittest import mock
from oslotest import base
from six.moves import mock
from sushy_tools.emulator.resources.drives import StaticDriver

View File

@ -13,8 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from unittest import mock
from oslotest import base
from six.moves import mock
from sushy_tools.emulator.resources import managers
from sushy_tools import error

View File

@ -13,8 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from unittest import mock
from oslotest import base
from six.moves import mock
from sushy_tools.emulator.resources.storage import StaticDriver