Skip to content

Commit 5d46fee

Browse files
committed
fix TypeError: use() got an unexpected keyword argument 'warn'
1 parent babd774 commit 5d46fee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
EXTENSIONS = [ext_1]
1111

1212
setup(name='stl_tools',
13-
version='0.4.0',
13+
version='0.4.1',
1414
install_requires=[
1515
'numpy==1.18.1',
1616
'scipy',

stl_tools/text2png.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
import matplotlib as mpl
3-
mpl.use('Agg', warn=False)
3+
mpl.use('Agg')
44
import matplotlib.pyplot as plt
55

66

0 commit comments

Comments
 (0)