From 01f3d0fc985fe4f98d10c88921f33676c84c4757 Mon Sep 17 00:00:00 2001 From: Florent Xicluna Date: Wed, 8 Feb 2012 16:08:15 +0100 Subject: [PATCH] =?utf8?q?[FIX]=C2=A0the=20embedded=20pychart=20library=20is?= =?utf8?q?=20not=20used.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit bzr revid: florent.xicluna@gmail.com-20120208150815-8th86hvpp11yiv4x --- openerp/__init__.py | 1 - openerp/report/__init__.py | 1 - setup.py | 8 ++------ 3 files changed, 2 insertions(+), 8 deletions(-) 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', -- 1.7.10.4