Skip to content

Commit 30bcb51

Browse files
cmaureirFriedemannKleint
authored andcommitted
build: reflect licenses in the wheel description
Qt is released under LGPLv3 or GPLv2 or GPLv3 and PySide as well, but for the simplicity of writing the description in the README and package description, LGPL/GPL or LGPLv3 has been written, which has caused confusion when dealing with GPL-only dependencies. To avoid this problem, we now reflect the licenses that has been in the repository and each file in the package description (PEP 639). Change-Id: I1e24c39ac415e635f5c44b57ccac0175e13b3736 Pick-to: 6.8 6.5 6.2 Reviewed-by: Friedemann Kleint <[email protected]> Reviewed-by: Ece Cinucen <[email protected]> Reviewed-by: Christian Tismer <[email protected]>
1 parent 19abd81 commit 30bcb51

5 files changed

+8
-6
lines changed

README.pyside6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ and [join our community](https://wiki.qt.io/Qt_for_Python#Community)!
8888

8989
### Licensing
9090

91-
PySide6 is available under both Open Source (LGPLv3/GPLv3) and commercial
91+
PySide6 is available under both Open Source (LGPLv3 or GPLv2 or GPLv3) and commercial
9292
license. Using PyPi is the recommended installation source, because the
9393
content of the wheels is valid for both cases. For more information, refer to
9494
the [Qt Licensing page](https://www.qt.io/licensing/).

README.pyside6_addons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ and [join our community](https://wiki.qt.io/Qt_for_Python#Community)!
6767

6868
### Licensing
6969

70-
PySide6 is available under both Open Source (LGPLv3/GPLv3) and commercial
70+
PySide6 is available under both Open Source (LGPLv3 or GPLv2 or GPLv3) and commercial
7171
license. Using PyPi is the recommended installation source, because the
7272
content of the wheels is valid for both cases. For more information, refer to
7373
the [Qt Licensing page](https://www.qt.io/licensing/).

README.pyside6_essentials.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ and [join our community](https://wiki.qt.io/Qt_for_Python#Community)!
5151

5252
### Licensing
5353

54-
PySide6 is available under both Open Source (LGPLv3/GPLv3) and commercial
54+
PySide6 is available under both Open Source (LGPLv3 or GPLv2 or GPLv3) and commercial
5555
license. Using PyPi is the recommended installation source, because the
5656
content of the wheels is valid for both cases. For more information, refer to
5757
the [Qt Licensing page](https://www.qt.io/licensing/).

README.pyside6_examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ and [join our community](https://wiki.qt.io/Qt_for_Python#Community)!
2828

2929
### Licensing
3030

31-
PySide6 is available under both Open Source (LGPLv3/GPLv3) and commercial
31+
PySide6 is available under both Open Source (LGPLv3 or GPLv2 or GPLv3) and commercial
3232
licenses. Using PyPi is the recommended installation source, because the
3333
content of the wheels is valid for both cases. For more information, refer to
3434
the [Qt Licensing page](https://www.qt.io/licensing/).

wheel_artifacts/pyproject.toml.base

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ readme = "PROJECT_README"
1212
dynamic = ["version"]
1313
requires-python = ">=3.9, <3.14"
1414
keywords = ["Qt"]
15-
license = {text = "LGPL"}
15+
license = {text="LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only"}
1616
dependencies = "PROJECT_DEPENDENCIES"
1717
classifiers = [
1818
"Development Status :: 5 - Production/Stable",
@@ -21,7 +21,9 @@ classifiers = [
2121
"Environment :: X11 Applications :: Qt",
2222
"Environment :: Win32 (MS Windows)",
2323
"Intended Audience :: Developers",
24-
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
24+
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
25+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
26+
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
2527
"License :: Other/Proprietary License",
2628
"Operating System :: MacOS :: MacOS X",
2729
"Operating System :: POSIX",

0 commit comments

Comments
 (0)