Skip to content

Commit 067d88b

Browse files
author
Waylan Limberg
committed
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.
1 parent 93d814f commit 067d88b

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

markdown/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
License: BSD (see docs/LICENSE for details).
4040
"""
4141

42-
version = "2.0.2"
43-
version_info = (2,0,2, "Final")
42+
version = "2.0.3"
43+
version_info = (2,0,3, "Final")
4444

4545
import re
4646
import codecs

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
import sys, os
44
from distutils.core import setup
55
from distutils.command.install_scripts import install_scripts
6-
from markdown import version
6+
7+
version = '2.0.3'
78

89
class md_install_scripts(install_scripts):
910
""" Customized install_scripts. Create markdown.bat for win32. """

0 commit comments

Comments
 (0)