aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/__init__.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@dev.(none)>2009-10-07 16:22:17 -0400
committerWaylan Limberg <waylan@dev.(none)>2009-10-07 16:22:17 -0400
commit067d88bc41c7924c9087b724ff5247235243ce6b (patch)
tree2cda04a3eee460c97f0411722bce3e9d9e54663d /markdown/__init__.py
parent93d814f0b66a413cbd4a4dc3f74c75ce183e69ac (diff)
downloadmarkdown-067d88bc41c7924c9087b724ff5247235243ce6b.tar.gz
markdown-067d88bc41c7924c9087b724ff5247235243ce6b.tar.bz2
markdown-067d88bc41c7924c9087b724ff5247235243ce6b.zip
Fixed a silly bug in setup.py. Importing version from the lib requires that all dependencaies for the lib are present, so we can't actuly import the lib until after we check for dependencies - which means we can't import version in the setup script. Grrr. We'll have to remember to update the version number in both places from now on. Sigh.2.0.3
Diffstat (limited to 'markdown/__init__.py')
-rw-r--r--markdown/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/markdown/__init__.py b/markdown/__init__.py
index 36f4f2c..bd52113 100644
--- a/markdown/__init__.py
+++ b/markdown/__init__.py
@@ -39,8 +39,8 @@ Copyright 2004 Manfred Stienstra (the original version)
License: BSD (see docs/LICENSE for details).
"""
-version = "2.0.2"
-version_info = (2,0,2, "Final")
+version = "2.0.3"
+version_info = (2,0,3, "Final")
import re
import codecs