Skip to content

Commit

Permalink
Updated bounds on PyQtGraph
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Aug 3, 2022
1 parent 64a901c commit df64929
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

Release 2.1.9
-------------

* Updated bounds on `pyqtgraph`.

Release 2.1.8
-------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
maintainer=AUTHOR,
maintainer_email=AUTHOR_EMAIL,
install_requires=REQUIREMENTS,
extras_require={"diffshow": ["pyqtgraph", "PyQt5"]},
extras_require={"diffshow": ["pyqtgraph>=0.12,<1", "PyQt5"]},
keywords="ultrafast electron scattering",
project_urls={
"Documentation": "https://scikit-ued.readthedocs.io/",
Expand Down
2 changes: 1 addition & 1 deletion skued/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__author__ = "Laurent P. René de Cotret"
__email__ = "[email protected]"
__license__ = "GPLv3"
__version__ = "2.1.8"
__version__ = "2.1.9"

from .affine import (
affine_map,
Expand Down
2 changes: 1 addition & 1 deletion skued/io/diffshow.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Therefore, we cannot define this class unless PyQtGraph is importable
if WITH_PYQTGRAPH:

class Diffshow(pg.QtGui.QWidget):
class Diffshow(pg.QtWidgets.QWidget):
"""
Widget containing a main viewer, plus some cursor information.
Expand Down

0 comments on commit df64929

Please sign in to comment.