Re: [sqlalchemy] persisted enum value from PEP-435 enum

2017-12-27 Thread Jon Snyder
Great, thanks for getting me over that hurdle. I'll work on adding tests and getting a proper PR ready. On Wed, Dec 27, 2017 at 8:07 AM, Mike Bayer wrote: > MySQL's "native" type for ENUM is itself an ENUM, so needs to have > this new parameter propagated when it is

[sqlalchemy] SQLAlchemy 1.2.0 released

2017-12-27 Thread Mike Bayer
SQLAlchemy release 1.2.0 is now available. Release 1.2.0 is the first official release in the 1.2 series, after three beta releases. The release represents the past eighteen months of new feature development since version 1.1 was released. The 1.2 series has a large mix of features and

SQLAlchemy 1.2.0 released

2017-12-27 Thread Mike Bayer
SQLAlchemy release 1.2.0 is now available. Release 1.2.0 is the first official release in the 1.2 series, after three beta releases. The release represents the past eighteen months of new feature development since version 1.1 was released. The 1.2 series has a large mix of features and

Re: [sqlalchemy] persisted enum value from PEP-435 enum

2017-12-27 Thread Mike Bayer
MySQL's "native" type for ENUM is itself an ENUM, so needs to have this new parameter propagated when it is told to create a "native" implementation for a generic ENUM: diff --git a/lib/sqlalchemy/dialects/mysql/enumerated.py b/lib/sqlalchemy/dialects/mysql/enumerated.py index