aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/quickstart.rst
diff options
context:
space:
mode:
authorCristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2020-12-09 10:18:13 +0100
committerCristian Maureira-Fredes <cristian.maureira-fredes@qt.io>2020-12-09 11:18:30 +0000
commit75ad96e587f9068609dfb5e4cfb0d528076e7633 (patch)
tree8e0452db34413fa8893d287ab232ca3652fba21d /sources/pyside6/doc/quickstart.rst
parent3547e40f6fd5d60fc316ab484e24a1962623e7c9 (diff)
doc: Update references to Qt6
* Updating versions, * Removing references to 5.x * Remove unavailable modules for Qt 6.0.0 * Comment unusable tutorials from the documentation Change-Id: I924953f97406ab8c5c04005a2d42dfbc03fdf7fa Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Christian Tismer <tismer@stackless.com>
Diffstat (limited to 'sources/pyside6/doc/quickstart.rst')
-rw-r--r--sources/pyside6/doc/quickstart.rst9
1 files changed, 2 insertions, 7 deletions
diff --git a/sources/pyside6/doc/quickstart.rst b/sources/pyside6/doc/quickstart.rst
index 37fbb0415..abff035a5 100644
--- a/sources/pyside6/doc/quickstart.rst
+++ b/sources/pyside6/doc/quickstart.rst
@@ -32,11 +32,11 @@ From the terminal, run the following command::
pip install PySide6
# For a specific version
- pip install PySide6==5.15.0
+ pip install PySide6==6.0
or::
- pip install --index-url=http://download.qt.io/snapshots/ci/pyside/5.15/latest pyside6 --trusted-host download.qt.io
+ pip install --index-url=http://download.qt.io/snapshots/ci/pyside/6.0.0/latest pyside6 --trusted-host download.qt.io
Test your Installation
----------------------
@@ -52,11 +52,6 @@ constructs to print version information::
# Prints the Qt version used to compile PySide6
print(PySide6.QtCore.__version__)
-.. note::
-
- As it happened in 5.14.2, PySide had a couple of new releases to fix
- issues in 5.14.2, adding yet another version level. In that case, you
- will have different versions being shown for Qt and PySide.
Create a Simple Application
---------------------------