Skip to content
This repository has been archived by the owner on Mar 22, 2018. It is now read-only.

Commit

Permalink
solves #40
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrasca committed Apr 4, 2015
1 parent 6138965 commit 3531cf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bauble/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

try:
import sqlalchemy as sa
parts = tuple(int(i) for i in sa.__version__.split('.'))
parts = tuple(int(i) for i in sa.__version__.split('.')[:2])
if parts < (0, 6):
msg = _('This version of Bauble requires SQLAlchemy 0.6 or greater. '
'You are using version %s. '
Expand Down
2 changes: 1 addition & 1 deletion bauble/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
# along with bauble.classic. If not, see <http://www.gnu.org/licenses/>.

# major, minor, revision version tuple
version = "1.0.12"
version = "1.0.12dev"
"""The Bauble version.
"""

0 comments on commit 3531cf8

Please sign in to comment.