From f0f9eebff930495ffc4ec1197da3b9b9a440d20c Mon Sep 17 00:00:00 2001 From: miyuchina Date: Mon, 7 Aug 2017 11:59:03 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9A=20bump=20version=20number?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mistletoe/__main__.py | 2 +- setup.py | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/mistletoe/__main__.py b/mistletoe/__main__.py index 5d41c5fd..13ee49c8 100644 --- a/mistletoe/__main__.py +++ b/mistletoe/__main__.py @@ -18,7 +18,7 @@ def interactive(): Parse user input, dump to stdout, rinse and repeat. Python REPL style. """ - print('mistletoe [version 0.1.1 alpha] (interactive)') + print('mistletoe [version 0.2] (interactive)') print('Type Ctrl-D to complete input, or Ctrl-C to exit.') while True: # eval loop try: diff --git a/setup.py b/setup.py index 0a1dfb61..c351f5fb 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='mistletoe', - version='0.1.1', + version='0.2', description='A fast, extensible Markdown parser in pure Python.', url='https://github.com/miyuchina/mistletoe', author='Mi Yu', @@ -13,6 +13,9 @@ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: Implementation :: CPython', @@ -21,5 +24,5 @@ 'Topic :: Text Processing :: Markup', ], keywords='markdown lexer parser development', - python_requires='~=3.5', + python_requires='~=3.3', zip_safe=False)