Skip to content

Commit

Permalink
Fox error on lw for some matplotlib versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Chipdelmal committed Jul 12, 2023
1 parent b5db4cc commit 96dc0ab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MGSurvE/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.5"
__version__ = "1.0.6"
2 changes: 1 addition & 1 deletion MGSurvE/landscape.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def plotMaskedMigrationNetwork(self,
def plotTraps(self,
fig, ax,
colors=cst.TRP_COLS, marker="X",
edgecolor='w', lws=(2, 0), ls=':',
edgecolor='w', lws=(2, 1), ls=':',
size=300, zorders=(25, -5),
**kwargs
):
Expand Down
2 changes: 1 addition & 1 deletion MGSurvE/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def plotTraps(
fig, ax,
trapsCoords, trapsTypes, trapsKernels, trapsFixed,
colors=cst.TRP_COLS, marker="X",
edgecolors=('w', 'k'), lws=(2, 0), ls=':',
edgecolors=('w', 'k'), lws=(2, 1), ls=':',
size=350, zorders=(25, -5), fill=True,
transform=None, transparencyHex='DD',
latlon=False, proj=None,
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

version = '1.0.5'
version = '1.0.6'

if __name__ == '__main__':
print(version)

0 comments on commit 96dc0ab

Please sign in to comment.