aboutsummaryrefslogtreecommitdiffstats
path: root/docs/installing
diff options
context:
space:
mode:
authorCristian Maureira-Fredes <cristian.maureira-fredes@qt.io>2019-04-01 14:38:24 +0200
committerCristian Maureira-Fredes <cristian.maureira-fredes@qt.io>2019-04-29 15:46:45 +0000
commitedae6185cef9c0ddd7c7c88bfa97c5043ba0d78a (patch)
treef6a5c161a4665ea54e8cb6b012fbb7f6a6118838 /docs/installing
parentec7f8b1ea6bde7dae8db50fe46aefaf5d2f63f15 (diff)
Remove old in-source documentation and files
This building and installing documentation is related to PySide1, and besides being deprecated, it was replaced by the information in our wiki and official docs. Also the appveyor.xml file was removed since it's out of date. Change-Id: I3d54e679db01057687dbd0cdf742decddcf86b1d Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'docs/installing')
-rw-r--r--docs/installing/index.rst9
-rw-r--r--docs/installing/linux.rst9
-rw-r--r--docs/installing/macosx.rst32
-rw-r--r--docs/installing/windows.rst33
4 files changed, 0 insertions, 83 deletions
diff --git a/docs/installing/index.rst b/docs/installing/index.rst
deleted file mode 100644
index ab4211fd1..000000000
--- a/docs/installing/index.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-Installing PySide
-=================
-
-.. toctree::
- :maxdepth: 2
-
- windows.rst
- macosx.rst
- linux.rst
diff --git a/docs/installing/linux.rst b/docs/installing/linux.rst
deleted file mode 100644
index 2fefd7c42..000000000
--- a/docs/installing/linux.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-.. _installing_linux:
-
-Installing PySide on a Linux System
-===================================
-
-We do not provide binaries for Linux. Please read
-the build instructions in section
-`Building PySide on a Linux System
-<http://pyside.readthedocs.org/en/latest/building/linux.html>`_.
diff --git a/docs/installing/macosx.rst b/docs/installing/macosx.rst
deleted file mode 100644
index 214d52f9b..000000000
--- a/docs/installing/macosx.rst
+++ /dev/null
@@ -1,32 +0,0 @@
-.. _installing_macosx:
-
-Installing PySide on a Mac OS X System
-======================================
-
-Installing prerequisites
-------------------------
-
-Install latest ``pip`` distribution: download `get-pip.py
-<https://bootstrap.pypa.io/get-pip.py>`_ and run it using
-the ``python`` interpreter.
-
-You need to install or build Qt 4.8 first, see the `Qt Project Documentation
-<http://qt-project.org/doc/qt-4.8/install-mac.html>`_.
-
-Alternatively you can use `Homebrew <http://brew.sh/>`_ and install Qt with
-
-::
-
- $ brew install qt
-
-Installing PySide
------------------
-
-To install PySide on Mac OS X you can choose from the following options:
-
-#. Use pip to install the ``wheel`` binary packages:
-
- ::
-
- $ pip install -U PySide
-
diff --git a/docs/installing/windows.rst b/docs/installing/windows.rst
deleted file mode 100644
index 899e2e356..000000000
--- a/docs/installing/windows.rst
+++ /dev/null
@@ -1,33 +0,0 @@
-.. _installing_windows:
-
-Installing PySide on a Windows System
-=====================================
-
-Installing prerequisites
-------------------------
-
-Install latest ``pip`` distribution: download `get-pip.py
-<https://bootstrap.pypa.io/get-pip.py>`_ and run it using
-the ``python`` interpreter.
-
-Installing PySide
------------------
-
-To install PySide on Windows you can choose from the following options:
-
-#. Use pip to install the ``wheel`` binary packages:
-
- ::
-
- pip install -U PySide
-
-#. Use setuptools to install the ``egg`` binary packages (deprecated):
-
- ::
-
- easy_install -U PySide
-
-.. note::
-
- Provided binaries are without any other external dependencies.
- All required Qt libraries, development tools and examples are included.