aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/gettingstarted
diff options
context:
space:
mode:
authorShyamnath Premnadh <shyamnath.premnadh@qt.io>2023-04-18 11:53:05 +0200
committerShyamnath Premnadh <shyamnath.premnadh@qt.io>2023-04-18 13:34:07 +0200
commite98d93a4eded1e31927c10b39a145cca7fe9c790 (patch)
tree18502d377be6f69ef5d842625fa0c47377a3ef0e /sources/pyside6/doc/gettingstarted
parentc350fc9606404d4d543aa20a2e71efa7da21fc34 (diff)
Docs: Update version in Getting Started
- Change 6.4 to 6.5 Pick-to: 6.5 Change-Id: I23babc4a6e1b9fd8870ea88cc1cf8423f40e4480 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'sources/pyside6/doc/gettingstarted')
-rw-r--r--sources/pyside6/doc/gettingstarted/linux.rst12
-rw-r--r--sources/pyside6/doc/gettingstarted/macOS.rst10
-rw-r--r--sources/pyside6/doc/gettingstarted/windows.rst6
3 files changed, 14 insertions, 14 deletions
diff --git a/sources/pyside6/doc/gettingstarted/linux.rst b/sources/pyside6/doc/gettingstarted/linux.rst
index c8eaf222b..f5036fe39 100644
--- a/sources/pyside6/doc/gettingstarted/linux.rst
+++ b/sources/pyside6/doc/gettingstarted/linux.rst
@@ -45,16 +45,16 @@ Cloning the official repository can be done by::
git clone https://code.qt.io/pyside/pyside-setup
-Checking out the version that we want to build, for example 6.4::
+Checking out the version that we want to build, for example 6.5::
- cd pyside-setup && git checkout 6.4
+ cd pyside-setup && git checkout 6.5
Install the general dependencies::
pip install -r requirements.txt
.. note:: Keep in mind you need to use the same version as your Qt installation.
- Additionally, :command:`git checkout -b 6.4 --track origin/6.4` could be a better option
+ Additionally, :command:`git checkout -b 6.5 --track origin/6.5` could be a better option
in case you want to work on it.
Building and Installing (setuptools)
@@ -64,15 +64,15 @@ The ``setuptools`` approach uses the ``setup.py`` file to execute the build,
install, and packaging steps.
Check your Qt installation path, to specifically use that version of qtpaths to build PySide.
-for example, :command:`/opt/Qt/6.4.2/gcc_64/bin/qtpaths`.
+for example, :command:`/opt/Qt/6.5.0/gcc_64/bin/qtpaths`.
Build can take a few minutes, so it is recommended to use more than one CPU core::
- python setup.py build --qtpaths=/opt/Qt/6.4.2/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
+ python setup.py build --qtpaths=/opt/Qt/6.5.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
To install on the current directory, just run::
- python setup.py install --qtpaths=/opt/Qt/6.4.2/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
+ python setup.py install --qtpaths=/opt/Qt/6.5.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
Building and Installing (cmake)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
diff --git a/sources/pyside6/doc/gettingstarted/macOS.rst b/sources/pyside6/doc/gettingstarted/macOS.rst
index 801eead5a..675414288 100644
--- a/sources/pyside6/doc/gettingstarted/macOS.rst
+++ b/sources/pyside6/doc/gettingstarted/macOS.rst
@@ -49,9 +49,9 @@ Cloning the official repository can be done by::
git clone https://code.qt.io/pyside/pyside-setup
-Checking out the version that we want to build, for example, 6.4::
+Checking out the version that we want to build, for example, 6.5::
- cd pyside-setup && git checkout 6.4
+ cd pyside-setup && git checkout 6.5
Install the general dependencies::
@@ -63,18 +63,18 @@ Building PySide
~~~~~~~~~~~~~~~
Check your Qt installation path, to specifically use that version of qtpaths to build PySide.
-for example, ``/opt/Qt/6.4.2/gcc_64/bin/qtpaths``.
+for example, ``/opt/Qt/6.5.0/gcc_64/bin/qtpaths``.
Build can take a few minutes, so it is recommended to use more than one CPU core::
- python setup.py build --qtpaths=/opt/Qt/6.4.2/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
+ python setup.py build --qtpaths=/opt/Qt/6.5.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
Installing PySide
~~~~~~~~~~~~~~~~~
To install on the current directory, just run::
- python setup.py install --qtpaths=/opt/Qt/6.4.2/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
+ python setup.py install --qtpaths=/opt/Qt/6.5.0/gcc_64/bin/qtpaths --build-tests --ignore-git --parallel=8
Test installation
~~~~~~~~~~~~~~~~~
diff --git a/sources/pyside6/doc/gettingstarted/windows.rst b/sources/pyside6/doc/gettingstarted/windows.rst
index acd80fdb4..243a5dc74 100644
--- a/sources/pyside6/doc/gettingstarted/windows.rst
+++ b/sources/pyside6/doc/gettingstarted/windows.rst
@@ -57,9 +57,9 @@ Cloning the official repository can be done by::
git clone https://code.qt.io/pyside/pyside-setup
-Checking out the version that we want to build, for example, 6.4::
+Checking out the version that we want to build, for example, 6.5::
- cd pyside-setup && git checkout 6.4
+ cd pyside-setup && git checkout 6.5
Install the general dependencies::
@@ -71,7 +71,7 @@ Building PySide
~~~~~~~~~~~~~~~
Check your Qt installation path, to specifically use that version of qtpaths to build PySide.
-for example, ``C:\Qt\6.4.2\msvc2019_64\bin\qtpaths.exe``.
+for example, ``C:\Qt\6.5.0\msvc2019_64\bin\qtpaths.exe``.
Build can take a few minutes, so it is recommended to use more than one CPU core::