Skip to content

Commit

Permalink
setup: Remove long-obsolete build_doc/test_doc commands
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed Feb 7, 2016
1 parent e3d3413 commit b02eab1
Showing 1 changed file with 2 additions and 13 deletions.
15 changes: 2 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# -*- coding: utf-8 -*-

import os
import subprocess
import sys
from distutils.cmd import Command

from setuptools import setup

Expand All @@ -13,16 +13,6 @@
sys.exit(1)


sys.path.append(os.path.join('doc', 'common'))
try:
from doctools import build_doc, test_doc
except ImportError:
build_doc = test_doc = None


from distutils.cmd import Command


class import_cldr(Command):
description = 'imports and converts the CLDR data'
user_options = []
Expand Down Expand Up @@ -73,8 +63,7 @@ def run(self):
'pytz>=0a',
],

cmdclass={'build_doc': build_doc, 'test_doc': test_doc,
'import_cldr': import_cldr},
cmdclass={'import_cldr': import_cldr},

zip_safe=False,

Expand Down

0 comments on commit b02eab1

Please sign in to comment.