diff options
author | Elizabeth Fischer <rpf2116@columbia.edu> | 2018-05-03 17:50:55 -0400 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-05-03 16:50:55 -0500 |
commit | e93c880a79f5ddc47b61b912ff0cf4d67af8c9cc (patch) | |
tree | 80d2e0023eb8b58f3844c53e7630231d39fd8305 | |
parent | ebca867496366dd6ee0011500ac54eb446026297 (diff) | |
download | spack-e93c880a79f5ddc47b61b912ff0cf4d67af8c9cc.tar.gz spack-e93c880a79f5ddc47b61b912ff0cf4d67af8c9cc.tar.bz2 spack-e93c880a79f5ddc47b61b912ff0cf4d67af8c9cc.tar.xz spack-e93c880a79f5ddc47b61b912ff0cf4d67af8c9cc.zip |
py-pyside: update (#8002)
-rw-r--r-- | var/spack/repos/builtin/packages/py-pyside/package.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyside/package.py b/var/spack/repos/builtin/packages/py-pyside/package.py index b38550e73f..0d7fae8271 100644 --- a/var/spack/repos/builtin/packages/py-pyside/package.py +++ b/var/spack/repos/builtin/packages/py-pyside/package.py @@ -31,7 +31,21 @@ class PyPyside(PythonPackage): homepage = "https://pypi.python.org/pypi/pyside" url = "https://pypi.io/packages/source/P/PySide/PySide-1.2.2.tar.gz" + # More recent versions of PySide2 (for Qt5) have been taken under + # the offical Qt umbrella. For more information, see: + # http://wiki.qt.io/Qt_for_Python_Development_Getting_Started + + # Version 1.2.4 claims to not work with Python 3.5, mostly + # because it hasn't been tested. Otherwise, it's the same as v1.2.3 + # https://github.com/PySide/pyside-setup/issues/58 + # Meanwhile, developers have moved onto pyside2 (for Qt5), + # and show little interest in certifying PySide 1.2.4 for Python. version('1.2.4', '3cb7174c13bd45e3e8f77638926cb8c0') # rpath problems + + # This is not available from pypi + # version('1.2.3', 'fa5d5438b045ede36104bba25a6ccc10') + + # v1.2.2 does not work with Python3 version('1.2.2', 'c45bc400c8a86d6b35f34c29e379e44d', preferred=True) depends_on('cmake', type='build') |