From 05557a3b73790e126c4ae39bc8106b4df3727b21 Mon Sep 17 00:00:00 2001 From: Philipp Wolfer Date: Sun, 21 Apr 2024 17:25:36 +0200 Subject: [PATCH] Minimum macOS version for Qt6 is 11.0 --- .github/workflows/package-macos.yml | 2 +- picard.spec | 2 +- requirements-macos-11.txt => requirements-macos-11.0.txt | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename requirements-macos-11.txt => requirements-macos-11.0.txt (100%) diff --git a/.github/workflows/package-macos.yml b/.github/workflows/package-macos.yml index 98d8172e7f..2f3b640ff1 100644 --- a/.github/workflows/package-macos.yml +++ b/.github/workflows/package-macos.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: setup: - - macos-deployment-version: 11 + - macos-deployment-version: '11.0' python-version: 3.12.1-macos11 python-sha256sum: 6178e42679eb83196240fc58b1438f481c32c2b0557f28ccf43aa7b1b80b7c4a env: diff --git a/picard.spec b/picard.spec index 54c5ec57fe..5705240d7f 100644 --- a/picard.spec +++ b/picard.spec @@ -132,7 +132,7 @@ else: 'CFBundleVersion': '%d.%d.%d' % PICARD_VERSION[:3], 'CFBundleShortVersionString': PICARD_VERSION.short_str(), 'LSApplicationCategoryType': 'public.app-category.music', - 'LSMinimumSystemVersion': os.environ.get('MACOSX_DEPLOYMENT_TARGET', '10.14'), + 'LSMinimumSystemVersion': os.environ.get('MACOSX_DEPLOYMENT_TARGET', '11.0'), 'NSHighResolutionCapable': True, 'NSPrincipalClass': 'NSApplication', 'NSRequiresAquaSystemAppearance': False, diff --git a/requirements-macos-11.txt b/requirements-macos-11.0.txt similarity index 100% rename from requirements-macos-11.txt rename to requirements-macos-11.0.txt