-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
27 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,16 @@ | |
#------------------------------------------------------------------------------ | ||
|
||
__author__ = 'Nicola Segata ([email protected])' | ||
__version__ = '1.1.2' | ||
__date__ = '1 June 2018' | ||
__version__ = '1.1.3' | ||
__date__ = '5 June 2018' | ||
|
||
|
||
import sys | ||
|
||
if sys.version_info[0] > 2: | ||
raise Exception("GraPhlAn requires Python 2, your current Python version is {}.{}.{}" | ||
.format(sys.version_info[0], sys.version_info[1], sys.version_info[2])) | ||
|
||
from sys import argv | ||
from argparse import ArgumentParser | ||
from src.graphlan_lib import CircTree as CTree | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,10 +11,16 @@ | |
#------------------------------------------------------------------------------ | ||
|
||
__author__ = 'Nicola Segata ([email protected])' | ||
__version__ = '1.1.2' | ||
__date__ = '1 June 2018' | ||
__version__ = '1.1.3' | ||
__date__ = '5 June 2018' | ||
|
||
|
||
import sys | ||
|
||
if sys.version_info[0] > 2: | ||
raise Exception("GraPhlAn requires Python 2, your current Python version is {}.{}.{}" | ||
.format(sys.version_info[0], sys.version_info[1], sys.version_info[2])) | ||
|
||
from sys import argv | ||
from argparse import ArgumentParser | ||
from src.graphlan_lib import CircTree as CTree | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters