Skip to content

Commit

Permalink
Merge heinrich5991/buildbot:pr_versioncheck (PR #1259)
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Oct 14, 2014
2 parents a343b1f + 7bd1d7b commit cc23bec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion master/buildbot/db/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ def check_sqlalchemy_migrate_version():
version = "0.6"
except Exception:
version = "0.0"
version_tup = tuple(map(int, version.split('.')))
version_tup = tuple(map(int, version.split('-', 1)[0].split('.')))
log.msg("using SQLAlchemy-Migrate version %s" % (version,))
if version_tup < (0, 6, 1):
raise RuntimeError("You are using SQLAlchemy-Migrate %s. "
Expand Down
2 changes: 2 additions & 0 deletions master/docs/relnotes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ Fixes

* Buildbot is now compatible with SQLAlchemy 0.8 and higher, using the newly-released SQLAlchemy-Migrate.

* The version check for SQLAlchemy-Migrate was fixed to accept more version string formats.

* The :bb:step:`HTTPStep` step's requeset parameters are now renderable.

* With Git(), force the updating submodules to ensure local changes by the
Expand Down

0 comments on commit cc23bec

Please sign in to comment.