diff options
| author | Cristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io> | 2023-01-04 22:52:07 +0100 |
|---|---|---|
| committer | Cristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io> | 2023-01-05 08:22:54 +0100 |
| commit | 0cfaab7f68c54138fd8bfc441c1f13f981330d9c (patch) | |
| tree | ed7dc0690d97cdeb876744c1227d1c047d006b35 | |
| parent | ecacc357ce2c545ef2384b340975b42f5064508a (diff) | |
build: avoid setuptools 65.6
There is a current issue with this version, so let's keep
the 65.5 for a while.
Pick-to: 6.4 6.2
Task-number: PYSIDE-2171
Change-Id: I14046222a30e1e4f48cc7697df93b3a6483c994e
Reviewed-by: Christian Tismer <tismer@stackless.com>
| -rw-r--r-- | coin/instructions/execute_build_instructions.yaml | 2 | ||||
| -rw-r--r-- | coin/instructions/execute_test_instructions.yaml | 2 | ||||
| -rw-r--r-- | requirements.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/coin/instructions/execute_build_instructions.yaml b/coin/instructions/execute_build_instructions.yaml index 1a6a5a393..b5f87c027 100644 --- a/coin/instructions/execute_build_instructions.yaml +++ b/coin/instructions/execute_build_instructions.yaml @@ -1,7 +1,7 @@ type: Group instructions: - type: ExecuteCommand - command: "python3 -m pip install -U setuptools" + command: "python3 -m pip install -U setuptools<65.6" maxTimeInSeconds: 14400 maxTimeBetweenOutput: 1200 enable_if: diff --git a/coin/instructions/execute_test_instructions.yaml b/coin/instructions/execute_test_instructions.yaml index b40bec126..48b871b68 100644 --- a/coin/instructions/execute_test_instructions.yaml +++ b/coin/instructions/execute_test_instructions.yaml @@ -5,7 +5,7 @@ enable_if: not_contains_value: LicenseCheck instructions: - type: ExecuteCommand - command: "python3 -m pip install -U setuptools" + command: "python3 -m pip install -U setuptools<65.6" maxTimeInSeconds: 14400 maxTimeBetweenOutput: 1200 enable_if: diff --git a/requirements.txt b/requirements.txt index 5601702ff..bcd20fa70 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -setuptools>=65 +setuptools>=65,<65.6 packaging build==0.7 six |
