From 4faea1b0747cbc1fa757289274dfa7d2a7367eea Mon Sep 17 00:00:00 2001 From: "HE, Tao" Date: Sun, 20 Jan 2019 14:01:11 +0800 Subject: [PATCH] Bump up the version to 3.4. Signed-off-by: HE, Tao --- .travis.yml | 3 +++ setup.py | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 43afa1e..b3d8a91 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,9 +2,12 @@ language: python python: - "2.7" + - "3.2" - "3.3" - "3.4" - "3.5" + - "3.6" + - "3.7" # command to install dependencies. install: true diff --git a/setup.py b/setup.py index 922690b..44f0f3b 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name = 'parsec', - version = '3.3', + version = '3.4', description = 'parser combinator.', long_description = 'A universal Python parser combinator library inspired by Parsec library of Haskell.', author = 'He Tao', @@ -23,9 +23,12 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', "License :: OSI Approved :: MIT License", ], platforms = 'any', @@ -36,4 +39,3 @@ test_suite = 'tests', ) -