Skip to content

Commit

Permalink
prepare for 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gijzelaerr committed Oct 25, 2017
1 parent fdc8a2e commit 84cb74a
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 10 deletions.
22 changes: 21 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,4 +1,24 @@
# 0.9.2
# 1.0.0

changes since 0.9.2

- Cleanup/modernize the test suite, get working with SQLalchemy 1.0, 1.1 and 1.2 #27
- TextTest failing bug sqlalchemy-1.2 #26
- EscapingTest fail for sqlalchemy==1.2.0b3 bug sqlalchemy-1.2 #25
- test_integrity_error test fail #17
- test_limit_offset_in_unions_from_alias test fail #14
- test_limit_offset_selectable_in_unions test fail #15
- test_order_by_selectable_in_unions test fail #16
- table name quoted wrong #11
- check old todo list if issues are still a problem #22
- test_bound_limit_offset test fail #19
- test_bound_limit test fail #18
- test_bound_offset test fail #20
- fix all temp table related issues #23
- Test suite fails with latest SQLALchemy >= 1.0 bug #1


# 0.9.2

changes since 0.9.1

Expand Down
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
MonetDB dialect for SQLAlchemy
==============================
This is the MonetDB dialect driver for SQLAlchemy.

This is the MonetDB dialect driver for SQLAlchemy. It has support for Python 2.7, 3.3+ and even PyPy. It supports
SQLalchemy 1.0, 1.1 and 1.2.


Installation
Expand All @@ -27,14 +29,11 @@ To start using this dialect::
MonetDB Lite (experimental)
---------------------------

We also have experimental support for MonetDB Lite!

For this install this dialect with an extra option::
We now have experimental support for MonetDB Lite! Note that this is experimental, and will probably break.

$ pip install sqlalchemy_monetdb[lite]
First you need to manually install MonetDB Lite: https://github.com/hannesmuehleisen/MonetDBLite-Python


Now can start using MonetDB Lite::
To connect to a MonetDBLite database use this syntax::

from sqlalchemy import create_engine
engine = create_engine('monetdb+lite:////tmp/monetdb_lite')
Expand All @@ -49,6 +48,7 @@ More info

Development
-----------

.. image:: https://travis-ci.org/gijzelaerr/sqlalchemy-monetdb.png?branch=master
:target: https://travis-ci.org/gijzelaerr/sqlalchemy-monetdb

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup_params = dict(
name="sqlalchemy_monetdb",
version='0.9.3',
version='1.0.0',
description="SQLAlchemy dialect for MonetDB",
author="Gijs Molenaar",
author_email="[email protected]",
Expand Down
2 changes: 2 additions & 0 deletions test/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@


3 changes: 2 additions & 1 deletion test/test_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_get_temp_table_indexes(self):
@testing.requires.temp_table_reflection
@testing.requires.unique_constraint_reflection
def test_get_temp_table_unique_constraints(self):
# TODO: it looks like MonetDB doesn't show constains for temp tables (yet)
# TODO: it looks like MonetDB doesn't show constrains for temp tables (yet)
return

@classmethod
Expand Down Expand Up @@ -200,6 +200,7 @@ def test_group_by_composed(self):
"""
Disable this for now
https://github.com/gijzelaerr/sqlalchemy-monetdb/issues/21
https://groups.google.com/forum/#!topic/sqlalchemy/r4X7ddN4rgA
"""
pass
Expand Down

0 comments on commit 84cb74a

Please sign in to comment.