From a6d5950186efc6a334dda69bb3e08a8f2e5cdeb3 Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Sat, 2 May 2015 03:08:49 -0400 Subject: [PATCH] Drop support for <1.2.0 --- .travis.yml | 6 ++---- CHANGELOG.rst | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4446df8..3bf1b90 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,10 +7,8 @@ python: - "pypy" env: - # Oldest supported version - - MARSHMALLOW_VERSION="==1.0.0" - # 1.2 line - - MARSHMALLOW_VERSION="==1.2.5" + # Lowest supported version + - MARSHMALLOW_VERSION="==1.2.0" # Latest release - MARSHMALLOW_VERSION="" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fb63f2a..63765b8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -17,7 +17,7 @@ Deprecation/Removal: Other changes: -- Drop support for marshmallow==1.0.0-a. marshmallow==1.0.0 is the minimum supported version. +- Drop support for marshmallow<1.2.0. 0.5.1 (2015-04-27) ****************** diff --git a/setup.py b/setup.py index e3588d0..9870caa 100755 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ REQUIRES = [ 'Flask', - 'marshmallow>=1.0.0', + 'marshmallow>=1.2.0', ] class PyTest(TestCommand):