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):
3333setup (
3434 zip_safe = False ,
3535 name = 'swat' ,
36- version = '1.8.2-dev ' ,
36+ version = '1.8.1 ' ,
3737 description = 'SAS Scripting Wrapper for Analytics Transfer (SWAT)' ,
3838 long_description = get_file ('README.md' ),
3939 long_description_content_type = 'text/markdown' ,
Original file line number Diff line number Diff line change 9393# SAS Formatter
9494from .formatter import SASFormatter # noqa: E402
9595
96- __version__ = '1.8.2-dev '
96+ __version__ = '1.8.1 '
9797__tk_version__ = None
Original file line number Diff line number Diff line change @@ -5267,7 +5267,7 @@ def test_boxplot(self):
52675267 except Exception as msg :
52685268 if isinstance (msg , ImportError ) or \
52695269 type (msg ).__name__ in ['TclError' ] or \
5270- type ( msg ). __name__ in [ 'FixedLocator' ] :
5270+ 'FixedLocator' in ( '%s' % msg ) :
52715271 tm .TestCase .skipTest (self , '%s' % msg )
52725272 raise
52735273
You can’t perform that action at this time.
0 commit comments