Skip to content

Commit

Permalink
error on python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
mikolmogorov committed Aug 27, 2024
1 parent 81656fc commit adc119d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion flye/__build__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__build__ = 1799
__build__ = 1800
3 changes: 3 additions & 0 deletions flye/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
from flye.repeat_graph.repeat_graph import RepeatGraph
from flye.six.moves import range

if sys.version_info[0] == 2:
raise Exception("Python 2 is unsupported")

logger = logging.getLogger()

class ResumeException(Exception):
Expand Down

0 comments on commit adc119d

Please sign in to comment.