Skip to content

Commit 8cd2d79

Browse files
committed
drop Qt 5.11 support
Now that new version of Debian stable has been released, we can bump the minimum required Qt version to 5.12 which is in Ubuntu Focal.
1 parent 25115aa commit 8cd2d79

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
qt_version: [5.11.3, 5.12.11, 5.15.2, 6.1.2]
10+
qt_version: [5.12.11, 5.15.2, 6.1.2]
1111
os: [windows-latest, ubuntu-latest, macos-latest]
1212
steps:
1313
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the [Releases](https://github.com/cutechess/cutechess/releases) page.
1414

1515
### Building from source
1616

17-
Cute Chess requires Qt 5.11 or greater, a compiler with C++11 support and `qmake`.
17+
Cute Chess requires Qt 5.12 or greater, a compiler with C++11 support and `qmake`.
1818
Cute Chess depends on the following Qt 5 modules:
1919

2020
* qt5-widgets

cutechess.pro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
contains(QT_VERSION, ^4\\..*|^5\\.[0-9]\\..*|^5\\.10\\..*) {
1+
contains(QT_VERSION, ^4\\..*|^5\\.[0-9]\\..*|^5\\.10\\..*|^5\\.11\\..*) {
22
message("Cannot build Cute Chess with Qt version $${QT_VERSION}.")
3-
error("Qt version 5.11 or later is required.")
3+
error("Qt version 5.12 or later is required.")
44
}
55

66
TEMPLATE = subdirs

0 commit comments

Comments
 (0)