We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 39f5460 + 072b358 commit 553fb5cCopy full SHA for 553fb5c
bin/reframe
@@ -8,7 +8,9 @@
8
import os
9
import sys
10
11
-prefix = os.path.join(os.path.abspath(os.path.dirname(__file__)), '..')
+prefix = os.path.normpath(
12
+ os.path.join(os.path.abspath(os.path.dirname(__file__)), '..')
13
+)
14
external = os.path.join(prefix, 'external')
15
sys.path = [prefix, external] + sys.path
16
reframe/__init__.py
VERSION = '3.1-dev1'
-INSTALL_PREFIX = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
+INSTALL_PREFIX = os.path.normpath(
+ os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
MIN_PYTHON_VERSION = (3, 6, 0)
# Check python version
0 commit comments