Skip to content

Commit fc1c430

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

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-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: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5265,7 +5265,9 @@ def test_boxplot(self):
52655265
)
52665266

52675267
except Exception as msg:
5268-
if isinstance(msg, ImportError) or type(msg).__name__ in ['TclError']:
5268+
if isinstance(msg, ImportError) or \
5269+
type(msg).__name__ in ['TclError'] or \
5270+
type(msg).__name__ in ['FixedLocator']:
52695271
tm.TestCase.skipTest(self, '%s' % msg)
52705272
raise
52715273

0 commit comments

Comments
 (0)