From 7690c420d8d7398aa494ffef6edc91c01baa5ad6 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sat, 30 Dec 2023 21:55:24 +0100 Subject: [PATCH 1/2] bump version to 4.9.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a37aa534..b726ba34 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ # note: release candidates should be versioned as a pre-release, e.g. "1.1rc1" # 1.1-rc1 would indicate a post-release, i.e., and update of 1.1, so beware -VERSION = '4.8.2' +VERSION = '4.9.0' # Utility function to read README file From 0851a31efa03abd4f5039544eba5474086cc2080 Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sat, 30 Dec 2023 22:08:34 +0100 Subject: [PATCH 2/2] don't check whether easyconfigs in __archive__/r/RCS from index are included in source tarball --- scripts/create_source_tarball.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/create_source_tarball.sh b/scripts/create_source_tarball.sh index af487d91..6ac6277c 100755 --- a/scripts/create_source_tarball.sh +++ b/scripts/create_source_tarball.sh @@ -240,7 +240,7 @@ if [[ "$repo" == "easybuild-easyconfigs" ]]; then echo -n ">> checking whether all files in index actually exist in unpacked source tarball ... " file_cnt=`cat $index_in_sdist | grep -v '^#' | wc -l | sed 's/ //g'` idx=1 - for file in `cat $index_in_sdist | grep -v '^#'`; do + for file in `cat $index_in_sdist | grep -v '^#' | grep -v '__archive__/r/RCS/'`; do echo -e -n "\r>> checking whether all files in index actually exist in unpacked source tarball ... $idx/$file_cnt" if [ ! -f $unpacked_sdist/easybuild/easyconfigs/$file ]; then error "File $file listed in index, but not found in $cwd!"