From 06bf286ab9ef89ee9a28d7abc61ace252f175bad Mon Sep 17 00:00:00 2001 From: Andrey Prjibelski Date: Wed, 8 May 2024 23:36:04 +0300 Subject: [PATCH] update make-tag-gz --- isoquant.py | 2 +- make-targz.sh | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/isoquant.py b/isoquant.py index 14d69a3e..eaf1da24 100755 --- a/isoquant.py +++ b/isoquant.py @@ -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() diff --git a/make-targz.sh b/make-targz.sh index 532b36bb..26f7a8a0 100755 --- a/make-targz.sh +++ b/make-targz.sh @@ -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