Skip to content

Commit

Permalink
Fix for pyqtgraph
Browse files Browse the repository at this point in the history
  • Loading branch information
timlinux committed Apr 29, 2024
1 parent f39e793 commit 21dcf70
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 1.3

* Auto install pyqtgraph

# Version 1.0.0 - date

* Initial version of the QGIS Animation Workbench
7 changes: 7 additions & 0 deletions animation_workbench/easing_preview.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@
QPoint,
pyqtSignal,
)
#TODO: add a gui to prompt the user if they want to install py
try:
import pyqtgraph
except ModuleNotFoundError:
import pip
pip.main(['install', 'pyqtgraph'])

from pyqtgraph import PlotWidget # pylint: disable=unused-import
import pyqtgraph as pg
from .utilities import get_ui_class
Expand Down
8 changes: 1 addition & 7 deletions animation_workbench/metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,11 @@
name=QGIS Animation Workbench
description=A plugin to let you build animations in QGIS
about=QGIS Animation Bench exists because we wanted to use all the awesome cartography features in QGIS and make cool, animated maps! QGIS already includes the Temporal Manager which allows you to produce animations for time-based data. But what if you want to make animations where you travel around the map, zooming in and out, and perhaps making features on the map wiggle and jiggle as the animation progresses? That is what the animation workbench tries to solve...
version=1.2
version=1.3
qgisMinimumVersion=3.0
author=Tim Sutton, Nyall Dawson, Jeremy Prior
email=tim@kartoza.com
<<<<<<< HEAD
repository=https://github.com/timlinux/QGISAnimationWorkbench
||||||| 5ec0741
repository=https://github.com/timlinux/QGISAnimationPlugin
=======
repository=https://github.com/timlinux/QGISAnimationWorkbench
tracker=https://github.com/timlinux/QGISAnimationWorkbench/issues
homepage=https://timlinux.github.io/QGISAnimationWorkbench/
>>>>>>> 8a8d08a4bc35d732b1853cf6c4fcd466ed01191e
license=GPLv2

0 comments on commit 21dcf70

Please sign in to comment.