Browse Source

Correct dependency for Python 3.

tags/v0.3.3
Marcio Faustino 10 years ago
parent
commit
a65357a535
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      setup.py

+ 1
- 1
setup.py View File

@@ -42,7 +42,7 @@ setup(
name = "mwparserfromhell",
packages = find_packages(exclude=("tests",)),
ext_modules = [tokenizer],
tests_require = ['unittest2'],
tests_require = ['unittest2py3k' if py3k else 'unittest2'],
test_suite = "discover_tests",
version = __version__,
author = "Ben Kurtovic",


Loading…
Cancel
Save