From 0be56aba609cbee3d194ea0f72052769c95a0f50 Mon Sep 17 00:00:00 2001 From: Nate Skulic Date: Thu, 28 Sep 2023 19:04:46 -0500 Subject: [PATCH] Improve Python Support. - Reduce requirements for the python build. - Fix version number. - Generate type hints for *.pyi files. --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index cbe95d1..60cccc9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,12 +1,12 @@ # Specify the build system. [build-system] -requires = ["sip >=6.0.2, <6.3", "PyQt-builder >=1.6, <2", "PyQt5==5.15.4", "PyQt5-sip<13,>=12.8"] +requires = ["sip >=6.0.2", "PyQt-builder >=1.6", "PyQt5>=5.15", "PyQt5-sip>=12.8"] build-backend = "sipbuild.api" # Specify the PEP 566 metadata for the project. [tool.sip.metadata] name = "PyQtAds" -version = "4.0.2" +version = "4.4.1" summary = "Python bindings for Qt Advanced Docking System" home-page = "https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System/" license = "LGPL v2.1" @@ -21,6 +21,7 @@ tag-prefix = "QtAds" define-macros = ["ADS_SHARED_EXPORT"] sip-file = "ads.sip" include-dirs = ["src"] +pep484-pyi = true qmake-QT = ["widgets", "gui-private; platform_system == 'Linux'"] headers = [ "src/AutoHideDockContainer.h",