Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mirrors
backtranslate
Commits
1c72d805
Commit
1c72d805
authored
Oct 30, 2016
by
Jeroen F.J. Laros
Browse files
Python3 compatibility.
parent
101b034f
Changes
2
Hide whitespace changes
Inline
Side-by-side
setup.py
View file @
1c72d805
...
...
@@ -12,7 +12,7 @@ license = 'MIT License'
keywords
=
[
'bioinformatics'
]
dependencies
=
[
'biopython'
,
'future'
,
'python-Levenshtein'
]
develop_dependencies
=
[
'pytest'
,
'tox'
]
develop_dependencies
=
[
'fake-open'
,
'pytest'
,
'tox'
]
supported
=
[(
2
,
7
),
(
3
,
3
),
(
3
,
4
)]
classifiers
=
[
'Development Status :: 3 - Alpha'
,
...
...
tests/test_cli.py
View file @
1c72d805
...
...
@@ -10,11 +10,9 @@ import sys
from
hashlib
import
md5
from
io
import
StringIO
from
backtranslate
import
cli
from
fake_open
import
md5_check
def
md5_check
(
data
,
md5sum
):
return
md5
(
data
).
hexdigest
()
==
md5sum
from
backtranslate
import
cli
class
TestParser
(
object
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment