From a9f85f47c1cf7b6436810d7c9bba4cd9f62868af Mon Sep 17 00:00:00 2001 From: Waylan Limberg Date: Wed, 14 Jul 2010 12:07:43 -0400 Subject: Made some changes to setup.py. Markdown version is now set to 2.1.0.Dev as it should have been for some time now. Also updated classifiers to correctly represent the Python versions we support. Removed 2.3 and added 2.7. --- markdown/__init__.py | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/markdown/__init__.py b/markdown/__init__.py index cbf3898..ad28101 100644 --- a/markdown/__init__.py +++ b/markdown/__init__.py @@ -30,8 +30,8 @@ Copyright 2004 Manfred Stienstra (the original version) License: BSD (see LICENSE for details). """ -version = "2.0.3" -version_info = (2,0,3, "Final") +version = "2.1.0" +version_info = (2,0,3, "Dev") import re import codecs diff --git a/setup.py b/setup.py index ac3ff32..131ee4b 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import sys, os from distutils.core import setup from distutils.command.install_scripts import install_scripts -version = '2.0.3' +version = '2.1.0.Dev' # The command line script name. Currently set to "markdown_py" so as not to # conflict with the perl implimentation (which uses "markdown"). We can't use @@ -49,10 +49,10 @@ data = dict( 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', - 'Programming Language :: Python :: 2.3', 'Programming Language :: Python :: 2.4', 'Programming Language :: Python :: 2.5', 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.1', 'Topic :: Communications :: Email :: Filters', -- cgit v1.2.3