Skip to content

Commit bb21eb9

Browse files
author
Kevin D Smith
committed
Create v1.8.1-rc release candidate.
1 parent cd043e6 commit bb21eb9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def get_file(fname):
3333
setup(
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',

swat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,5 +93,5 @@
9393
# SAS Formatter
9494
from .formatter import SASFormatter # noqa: E402
9595

96-
__version__ = '1.8.2-dev'
96+
__version__ = '1.8.1'
9797
__tk_version__ = None

swat/tests/cas/test_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)