File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def get_file(fname):
33
33
setup (
34
34
zip_safe = False ,
35
35
name = 'swat' ,
36
- version = '1.8.2-dev ' ,
36
+ version = '1.8.1 ' ,
37
37
description = 'SAS Scripting Wrapper for Analytics Transfer (SWAT)' ,
38
38
long_description = get_file ('README.md' ),
39
39
long_description_content_type = 'text/markdown' ,
Original file line number Diff line number Diff line change 93
93
# SAS Formatter
94
94
from .formatter import SASFormatter # noqa: E402
95
95
96
- __version__ = '1.8.2-dev '
96
+ __version__ = '1.8.1 '
97
97
__tk_version__ = None
Original file line number Diff line number Diff line change @@ -5267,7 +5267,7 @@ def test_boxplot(self):
5267
5267
except Exception as msg :
5268
5268
if isinstance (msg , ImportError ) or \
5269
5269
type (msg ).__name__ in ['TclError' ] or \
5270
- type ( msg ). __name__ in [ 'FixedLocator' ] :
5270
+ 'FixedLocator' in ( '%s' % msg ) :
5271
5271
tm .TestCase .skipTest (self , '%s' % msg )
5272
5272
raise
5273
5273
You can’t perform that action at this time.
0 commit comments