Skip to content

Commit

Permalink
update make-tag-gz
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprzh committed May 8, 2024
1 parent b413738 commit 06bf286
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion isoquant.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def add_hidden_option(*args, **kwargs): # show command only with --full-help
add_hidden_option("--cage-shift", type=int, default=50, help="interval before read start to look for CAGE peak")
parser.add_argument("--test", action=TestMode, nargs=0, help="run IsoQuant on toy dataset")

isoquant_version = "3.2.0"
isoquant_version = "3.4.0"
try:
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), "VERSION")) as version_f:
isoquant_version = version_f.readline().strip()
Expand Down
3 changes: 2 additions & 1 deletion make-targz.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ cp isoquant.py $TARGET_DIR/
cp README.md $TARGET_DIR/
cp VERSION $TARGET_DIR/
cp LICENSE $TARGET_DIR/
cp changelog.html $TARGET_DIR/
cp changelog.md $TARGET_DIR/
cp requirements.txt $TARGET_DIR/
cp CODE_OF_CONDUCT.md $TARGET_DIR/

tar -pczf $TARGET_DIR.tar.gz $TARGET_DIR
rm -r $TARGET_DIR

0 comments on commit 06bf286

Please sign in to comment.