Skip to content

Commit

Permalink
Merge pull request #479 from lutraconsulting/python39
Browse files Browse the repository at this point in the history
 python39 support
  • Loading branch information
saberraz committed Feb 26, 2021
2 parents 54fa469 + 2d8d964 commit e21b310
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion crayfish/gui/plot_1d_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import sys
import os
this_dir = os.path.dirname(os.path.realpath(__file__))
path = os.path.join(this_dir, os.pardir, 'pyqtgraph-0.10.0-py2.py3-none-any.whl')
path = os.path.join(this_dir, os.pardir, 'pyqtgraph-0.11.1-py2.py3-none-any.whl')
sys.path.append(path)
import pyqtgraph

Expand Down
2 changes: 1 addition & 1 deletion crayfish/gui/plot_3d_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
import sys
import os
this_dir = os.path.dirname(os.path.realpath(__file__))
path = os.path.join(this_dir, os.pardir, 'pyqtgraph-0.10.0-py2.py3-none-any.whl')
path = os.path.join(this_dir, os.pardir, 'pyqtgraph-0.11.1-py2.py3-none-any.whl')
sys.path.append(path)
import pyqtgraph

Expand Down
2 changes: 1 addition & 1 deletion crayfish/gui/plot_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
import sys
import os
this_dir = os.path.dirname(os.path.realpath(__file__))
path = os.path.join(this_dir, os.pardir, 'pyqtgraph-0.10.0-py2.py3-none-any.whl')
path = os.path.join(this_dir, os.pardir, 'pyqtgraph-0.11.1-py2.py3-none-any.whl')
sys.path.append(path)
import pyqtgraph

Expand Down
9 changes: 6 additions & 3 deletions crayfish/metadata.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
; the next section is mandatory
[general]
name=Crayfish
qgisMinimumVersion=3.17
qgisMinimumVersion=3.18
qgisMaximumVersion=3.99
description=Tools for mesh layers QGIS
version=3.5.0
version=3.5.1
author=Lutra Consulting
email=info@lutraconsulting.co.uk
about=The Crayfish plugin contains set of advanced tool for the QGIS Mesh Layer as plots and animations.
; end of mandatory metadata

; start of optional metadata
changelog=3.5.0 Bug Fixes and New Features:
changelog=3.5.1 Bug Fixes:
- Support for Python 3.9.x
- Usage of pyqtgraph 0.11.1
<p>3.5.0 Bug Fixes and New Features:
- Fix invalid ffmpeg download url
- Fix SAGA processing algorithms
- Moved the processing algorithms to QGIS main repository
Expand Down
2 changes: 1 addition & 1 deletion crayfish/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import sys
import os
this_dir = os.path.dirname(os.path.realpath(__file__))
path = os.path.join(this_dir, 'pyqtgraph-0.10.0-py2.py3-none-any.whl')
path = os.path.join(this_dir, 'pyqtgraph-0.11.1-py2.py3-none-any.whl')
sys.path.append(path)
import pyqtgraph as pg
from pyqtgraph.exporters import ImageExporter
Expand Down
Binary file removed crayfish/pyqtgraph-0.10.0-py2.py3-none-any.whl
Binary file not shown.
Binary file added crayfish/pyqtgraph-0.11.1-py2.py3-none-any.whl
Binary file not shown.

0 comments on commit e21b310

Please sign in to comment.