Skip to content

Commit

Permalink
prepare for 1.5.1 (#101)
Browse files Browse the repository at this point in the history
* prepare for 1.5.1

* re-enable disabled tests

* fix pycodestyle check
  • Loading branch information
gijzelaerr committed Mar 3, 2022
1 parent 968095f commit 0158dae
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
19 changes: 19 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# 1.5.1

changes since 1.5.0

* Fix failing unicode test by @gijzelaerr in (#98)
* Perform bin<->hex conversion directly, not in pymonetdb.Binary by @joerivanruth in (#100)


# 1.5.0

changes since 1.4.1

- Use new MAPI handshake options, if available by @joerivanruth in (#88)
- Allow to connect using a full mapi uri in place of the database parameter. by @joerivanruth in (#89)
- Improve timezone handling by @joerivanruth in (#90)
- Add Python->MonetDB UUID conversion by @kutsurak in (#92
- Try any hash algorithm that the server gives us in order. by @sjoerdmullender in (#95)
- Send Xclose commands to avoid server side space leaks by @joerivanruth in (#97)


# 1.4.1

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


__version__ = '1.5.0'
__version__ = '1.5.1'

setup(
name='pymonetdb',
Expand Down
5 changes: 0 additions & 5 deletions tests/test_unicode.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ def _connect(self):
except AttributeError:
self.fail("No connect method found in pymonetdb module")

@unittest.skip("broken, Expected to be fixed in Jul2021-SP2 (#96")
def test_unicode_string(self):
con = self._connect()
cursor = con.cursor()
Expand All @@ -64,7 +63,6 @@ def test_unicode_string(self):
self.assertEqual(x, cursor.fetchone()[0])
con.close()

@unittest.skip("broken, Expected to be fixed in Jul2021-SP2 (#96")
def test_utf8(self):
con = self._connect()
try:
Expand All @@ -79,7 +77,6 @@ def test_utf8(self):
finally:
con.close()

@unittest.skip("broken, Expected to be fixed in Jul2021-SP2 (#96")
def test_unicode(self):
con = self._connect()
try:
Expand All @@ -96,7 +93,6 @@ def test_unicode(self):
finally:
con.close()

@unittest.skip("broken, Expected to be fixed in Jul2021-SP2 (#96")
def test_substring(self):
con = self._connect()
try:
Expand Down Expand Up @@ -160,7 +156,6 @@ def test_non_ascii_string(self):
self.assertEqual(type(returned), str)
con.close()

@unittest.skip("broken, Expected to be fixed in Jul2021-SP2 (#96")
def test_query_ending_with_comment(self):
con = self._connect()
cur = con.cursor()
Expand Down

0 comments on commit 0158dae

Please sign in to comment.