From: Florent Xicluna Date: Wed, 8 Feb 2012 15:08:15 +0000 (+0100) Subject: [FIX] the embedded pychart library is not used. X-Git-Tag: 7.0-server~2316^2^2 X-Git-Url: http://git.inspyration.org/?a=commitdiff_plain;h=01f3d0fc985fe4f98d10c88921f33676c84c4757;p=odoo%2Fodoo.git [FIX] the embedded pychart library is not used. bzr revid: florent.xicluna@gmail.com-20120208150815-8th86hvpp11yiv4x --- diff --git a/openerp/__init__.py b/openerp/__init__.py index 7e723c4..5827b74 100644 --- a/openerp/__init__.py +++ b/openerp/__init__.py @@ -32,7 +32,6 @@ import modules import netsvc import osv import pooler -import pychart import release import report import run_tests diff --git a/openerp/report/__init__.py b/openerp/report/__init__.py index 646967f..48b654f 100644 --- a/openerp/report/__init__.py +++ b/openerp/report/__init__.py @@ -24,7 +24,6 @@ import print_xml import print_fnc import custom import render -import openerp.pychart import int_to_text import report_sxw diff --git a/setup.py b/setup.py index 6e1adad..037d288 100755 --- a/setup.py +++ b/setup.py @@ -87,14 +87,10 @@ setuptools.setup( scripts = ['openerp-server'], data_files = data(), packages = setuptools.find_packages(), + dependency_links = ['http://download.gna.org/pychart/'], #include_package_data = True, install_requires = [ - # TODO the pychart package we include in openerp corresponds to PyChart 1.37. - # It seems there is a single difference, which is a spurious print in generate_docs.py. - # It is probably safe to move to PyChart 1.39 (the latest one). - # (Let setup.py choose the latest one, and we should check we can remove pychart from - # our tree.) http://download.gna.org/pychart/ - # TODO 'pychart', + 'pychart', 'babel', 'feedparser', 'gdata',