Skip to content

Commit 25b108e

Browse files
authored
Merge pull request #756 from gerrod3/fix-release-branch-script
Fix relative import error on release_ci_branches script
2 parents e8fa6a4 + 4e2e786 commit 25b108e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.ci/scripts/release_ci_branches.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
import json
66
from yaml import safe_load
77
from packaging import version
8-
from .check_up_to_date import check_update
8+
import sys
9+
10+
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
11+
from check_up_to_date import check_update
912

1013

1114
# We use this to check if the version is x,y, like a normal branch.

0 commit comments

Comments
 (0)