Skip to content

Commit 2d19445

Browse files
authored
Merge pull request #4236 from branfosj/version
bump version to 5.0.0.dev0
2 parents 03155f2 + 6521fef commit 2d19445

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/eb_command.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
pymajver=$(python -c 'import sys; print(sys.version_info[0])')
9292
pymajminver=$(python -c 'import sys; print(".".join(str(x) for x in sys.version_info[:2]))')
9393
# check patterns in verbose output
94-
for pattern in "^>> Considering .python3.\.\.\." "^>> .python3. version: ${pymajminver}\.[0-9]\+, which matches Python ${pymajver} version requirement" "^>> 'python3' is able to import 'easybuild.framework', so retaining it" "^>> Selected Python command: python3 \(.*/bin/python3\)" "^This is EasyBuild 4\.[0-9.]\+"; do
94+
for pattern in "^>> Considering .python3.\.\.\." "^>> .python3. version: ${pymajminver}\.[0-9]\+, which matches Python ${pymajver} version requirement" "^>> 'python3' is able to import 'easybuild.framework', so retaining it" "^>> Selected Python command: python3 \(.*/bin/python3\)" "^This is EasyBuild 5\.[0-9.]\+"; do
9595
echo "Looking for pattern \"${pattern}\" in eb_version.out..."
9696
grep "$pattern" eb_version.out
9797
done
@@ -103,7 +103,7 @@ jobs:
103103
for eb_python in "python${pymajver}" "python${pymajminver}"; do
104104
export EB_PYTHON="${eb_python}"
105105
eb --version | tee eb_version.out 2>&1
106-
for pattern in "^>> Considering .${eb_python}.\.\.\." "^>> .${eb_python}. version: ${pymajminver}\.[0-9]\+, which matches Python ${pymajver} version requirement" "^>> '${eb_python}' is able to import 'easybuild.framework', so retaining it" "^>> Selected Python command: ${eb_python} \(.*/bin/${eb_python}\)" "^This is EasyBuild 4\.[0-9.]\+"; do
106+
for pattern in "^>> Considering .${eb_python}.\.\.\." "^>> .${eb_python}. version: ${pymajminver}\.[0-9]\+, which matches Python ${pymajver} version requirement" "^>> '${eb_python}' is able to import 'easybuild.framework', so retaining it" "^>> Selected Python command: ${eb_python} \(.*/bin/${eb_python}\)" "^This is EasyBuild 5\.[0-9.]\+"; do
107107
echo "Looking for pattern \"${pattern}\" in eb_version.out..."
108108
grep "$pattern" eb_version.out
109109
done

easybuild/tools/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
# recent setuptools versions will *TRANSFORM* something like 'X.Y.Zdev' into 'X.Y.Z.dev0', with a warning like
4646
# UserWarning: Normalizing '2.4.0dev' to '2.4.0.dev0'
4747
# This causes problems further up the dependency chain...
48-
VERSION = LooseVersion('4.7.2.dev0')
48+
VERSION = LooseVersion('5.0.0.dev0')
4949
UNKNOWN = 'UNKNOWN'
5050

5151

0 commit comments

Comments
 (0)