Skip to content

Commit 553fb5c

Browse files
author
Vasileios Karakasis
authored
Merge branch 'master' into doc/enhance-require-deps
2 parents 39f5460 + 072b358 commit 553fb5c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

bin/reframe

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
import os
99
import sys
1010

11-
prefix = os.path.join(os.path.abspath(os.path.dirname(__file__)), '..')
11+
prefix = os.path.normpath(
12+
os.path.join(os.path.abspath(os.path.dirname(__file__)), '..')
13+
)
1214
external = os.path.join(prefix, 'external')
1315
sys.path = [prefix, external] + sys.path
1416

reframe/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88

99

1010
VERSION = '3.1-dev1'
11-
INSTALL_PREFIX = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
11+
INSTALL_PREFIX = os.path.normpath(
12+
os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
13+
)
1214
MIN_PYTHON_VERSION = (3, 6, 0)
1315

1416
# Check python version

0 commit comments

Comments
 (0)