From 27ab9ad5c128cedf5f1a62f78fe0bfdf76c1e767 Mon Sep 17 00:00:00 2001 From: Carlos Cordoba Date: Wed, 7 Apr 2021 14:58:06 -0500 Subject: [PATCH] Update QtAwesome requirement to use the latest Material design icons --- binder/environment.yml | 2 +- requirements/conda.txt | 2 +- setup.py | 2 +- spyder/dependencies.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/binder/environment.yml b/binder/environment.yml index 5ce259cbd73..4e8a551967f 100644 --- a/binder/environment.yml +++ b/binder/environment.yml @@ -36,7 +36,7 @@ dependencies: - pyzmq >=17 - qdarkstyle =3.0.2 - qstylizer >=0.1.10 -- qtawesome >=0.5.7 +- qtawesome >=1.0.2 - qtconsole >=5.0.3 - qtpy >=1.5.0 - rtree >=0.8.3 diff --git a/requirements/conda.txt b/requirements/conda.txt index 311a0003180..e09a9f2cc36 100644 --- a/requirements/conda.txt +++ b/requirements/conda.txt @@ -32,7 +32,7 @@ pyxdg >=0.26 pyzmq >=17 qdarkstyle =3.0.2 qstylizer >=0.1.10 -qtawesome >=0.5.7 +qtawesome >=1.0.2 qtconsole >=5.0.3 qtpy >=1.5.0 rtree >=0.8.3 diff --git a/setup.py b/setup.py index 30f9df13977..9206fcd6681 100644 --- a/setup.py +++ b/setup.py @@ -231,7 +231,7 @@ def run(self): 'pyzmq>=17', 'qdarkstyle==3.0.2', 'qstylizer>=0.1.10', - 'qtawesome>=0.5.7', + 'qtawesome>=1.0.2', 'qtconsole>=5.0.3', 'qtpy>=1.5.0', 'setuptools>=39.0.0', diff --git a/spyder/dependencies.py b/spyder/dependencies.py index 237e3371ee3..c26ff90fc03 100644 --- a/spyder/dependencies.py +++ b/spyder/dependencies.py @@ -57,7 +57,7 @@ PYZMQ_REQVER = '>=17' QDARKSTYLE_REQVER = '=3.0.2' QSTYLIZER_REQVER = '>=0.1.10' -QTAWESOME_REQVER = '>=0.5.7' +QTAWESOME_REQVER = '>=1.0.2' QTCONSOLE_REQVER = '>=5.0.3' QTPY_REQVER = '>=1.5.0' RTREE_REQVER = '>=0.8.3'