Skip to content

Commit

Permalink
Get rid of dependency on six
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed Feb 10, 2024
1 parent 984e240 commit 06f135e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ requirements:
run:
- python
- mkl >=2019.3
- six

test:
requires:
Expand Down
3 changes: 1 addition & 2 deletions tests/test_mkl_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@


import pytest
import six
import mkl


Expand All @@ -39,7 +38,7 @@ def test_get_version():

def test_get_version_string():
v = mkl.get_version_string()
assert isinstance(v, six.string_types)
assert isinstance(v, str)
assert 'Math Kernel Library' in v


Expand Down

0 comments on commit 06f135e

Please sign in to comment.