Skip to content

Commit 12d4d17

Browse files
committed
Prep for v0.8.4 release
1 parent e8a14be commit 12d4d17

File tree

4 files changed

+12
-17
lines changed

4 files changed

+12
-17
lines changed

.github/workflows/smoke-test.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,6 @@ jobs:
107107
pip install -r requirements.txt
108108
pip install -r test-requirements.txt
109109
110-
- name: Install MySQLdb on Linux
111-
if: ${{ matrix.os == 'ubuntu-20.04' }}
112-
run: |
113-
pip install mysqlclient
114-
115110
- name: Install SingleStore package
116111
run: |
117112
pip install .

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = singlestoredb
3-
version = 0.8.3
3+
version = 0.8.4
44
description = Interface to the SingleStore database and cluster management APIs
55
long_description = file: README.md
66
long_description_content_type = text/markdown

singlestoredb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
"""
1515

16-
__version__ = '0.8.3'
16+
__version__ = '0.8.4'
1717

1818
from .alchemy import create_engine
1919
from .config import options, get_option, set_option, describe_option

singlestoredb/tests/test_connection.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -76,16 +76,16 @@ def test_cast_bool_param(self):
7676
assert cbp('enable') is True, cbp('enable')
7777
assert cbp('enabled') is True, cbp('enabled')
7878

79-
assert cbp('false') is True, cbp('false')
80-
assert cbp('f') is True, cbp('f')
81-
assert cbp('False') is True, cbp('False')
82-
assert cbp('F') is True, cbp('F')
83-
assert cbp('FALSE') is True, cbp('FALSE')
84-
85-
assert cbp('off') is True, cbp('off')
86-
assert cbp('no') is True, cbp('no')
87-
assert cbp('disable') is True, cbp('disable')
88-
assert cbp('disabled') is True, cbp('disabled')
79+
assert cbp('false') is False, cbp('false')
80+
assert cbp('f') is False, cbp('f')
81+
assert cbp('False') is False, cbp('False')
82+
assert cbp('F') is False, cbp('F')
83+
assert cbp('FALSE') is False, cbp('FALSE')
84+
85+
assert cbp('off') is False, cbp('off')
86+
assert cbp('no') is False, cbp('no')
87+
assert cbp('disable') is False, cbp('disable')
88+
assert cbp('disabled') is False, cbp('disabled')
8989

9090
with self.assertRaises(ValueError):
9191
cbp('nein')

0 commit comments

Comments
 (0)