Skip to content

Commit 9cd7306

Browse files
authored
Merge pull request #24 from zhangtaolab/dev
Fix ChorusPBGUI bug due to matplotlib version change
2 parents 313bb3c + 2a67b9b commit 9cd7306

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

ChorusGUI/run_probMW.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,6 @@ def saveProbe(self):
431431
tb.show()
432432

433433
span = SpanSelector(tb.widget.canvas.ax1, tb.oneselect, 'horizontal', useblit=True,
434-
rectprops=dict(alpha=0.3, facecolor='grey'))
434+
props=dict(alpha=0.3, facecolor='grey'))
435435

436-
sys.exit(app.exec_())
436+
sys.exit(app.exec_())

ChorusPBGUI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -603,7 +603,7 @@ def main():
603603
tb.show()
604604

605605
span = SpanSelector(tb.widget.canvas.ax1, tb.oneselect, 'horizontal', useblit=True,
606-
rectprops=dict(alpha=0.3, facecolor='grey'))
606+
props=dict(alpha=0.3, facecolor='grey'))
607607

608608
sys.exit(app.exec_())
609609

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Cython
22
numpy
33
pyfasta
4-
primer3-py
4+
primer3-py>=1.0.0
55
pandas<2
66
pyBigWig
77
pybedtools

requirements_GUI.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Cython
22
numpy
33
pyfasta
4-
primer3-py
4+
primer3-py>=1.0.0
55
pandas<2
66
pyBigWig
7-
matplotlib
7+
matplotlib>=3.5.0
88
PyQt5<5.11
99
SIP>=4

0 commit comments

Comments
 (0)