diff options
author | Waylan Limberg <waylan@gmail.com> | 2010-07-14 12:07:43 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2010-07-14 12:07:43 -0400 |
commit | a9f85f47c1cf7b6436810d7c9bba4cd9f62868af (patch) | |
tree | bf60a0af0795fc290b31a10de2c2677b40315ba7 | |
parent | 542131b209f856f0355cd08a71753cb7fd5d0a76 (diff) | |
download | markdown-a9f85f47c1cf7b6436810d7c9bba4cd9f62868af.tar.gz markdown-a9f85f47c1cf7b6436810d7c9bba4cd9f62868af.tar.bz2 markdown-a9f85f47c1cf7b6436810d7c9bba4cd9f62868af.zip |
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.
-rw-r--r-- | markdown/__init__.py | 4 | ||||
-rwxr-xr-x | 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 @@ -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', |