Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--coin/instructions/execute_build_instructions.yaml2
-rw-r--r--coin_build_instructions.py2
-rw-r--r--coin_test_instructions.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/coin/instructions/execute_build_instructions.yaml b/coin/instructions/execute_build_instructions.yaml
index b1981977f..4b8fb41c9 100644
--- a/coin/instructions/execute_build_instructions.yaml
+++ b/coin/instructions/execute_build_instructions.yaml
@@ -42,7 +42,7 @@ instructions:
Failed to execute build instructions on macOS
- type: EnvironmentVariable
variableName: PYSIDE_SIGNING_DIR
- variableValue: "{{.AgentWorkingDir}}\\pyside\\{{.Env.TESTED_MODULE_COIN}}\\build\\qfpa-p3.7\\package_for_wheels"
+ variableValue: "{{.AgentWorkingDir}}\\pyside\\{{.Env.TESTED_MODULE_COIN}}\\build\\qfpa-p3.8\\package_for_wheels"
enable_if:
condition: property
property: host.osVersion
diff --git a/coin_build_instructions.py b/coin_build_instructions.py
index 6e8ab8d4d..de3b9a8cd 100644
--- a/coin_build_instructions.py
+++ b/coin_build_instructions.py
@@ -153,7 +153,7 @@ if __name__ == "__main__":
if (os.environ.get('HOST_OSVERSION_COIN')).startswith('windows_10'):
python_ver = "3.10.0"
else:
- python_ver = "3.7.9"
+ python_ver = "3.8.1"
if CI_TEST_PHASE in ["ALL", "BUILD"]:
call_setup(python_ver, "BUILD")
# Until CI has a feature to set more dynamic signing dir, make sure it actually exist
diff --git a/coin_test_instructions.py b/coin_test_instructions.py
index dcc050941..03959a536 100644
--- a/coin_test_instructions.py
+++ b/coin_test_instructions.py
@@ -104,7 +104,7 @@ def run_test_instructions():
if (os.environ.get('HOST_OSVERSION_COIN')).startswith('windows_10'):
call_testrunner("3.10.0", str(testRun))
else:
- call_testrunner("3.7.9", str(testRun))
+ call_testrunner("3.8.1", str(testRun))
elif CI_HOST_OS == "Linux":
call_testrunner("3.8", str(testRun))
else: