Skip to content

Commit 1b90857

Browse files
committed
Fix issue with matplotlib 3.8.0 - close #70
1 parent c19a24f commit 1b90857

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Tutorial/Source/HodgkinHuxley.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def Main(self, init_values=[-64.99584, 0.05296, 0.59590, 0.31773]):
290290

291291
fig=plt.figure(figsize=(7, self.num_plots * 2))
292292
fig.canvas.header_visible = False
293-
plt.xlim([np.min(self.t),np.max(self.t)]) #for all subplots
293+
# plt.xlim([np.min(self.t),np.max(self.t)]) #for all subplots
294294

295295
if self.injected_current_plot:
296296
ax1 = plt.subplot(self.num_plots,1,self.plot_count + 1)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
scipy
22
numpy
3-
matplotlib==3.5.1
3+
matplotlib==3.8.0
44
ipywidgets
55
ipympl

0 commit comments

Comments
 (0)