~ubuntu-branches/ubuntu/vivid/python-chaco/vivid-proposed

« back to all changes in this revision

Viewing changes to setup_data.py

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2010-06-03 01:43:27 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100603014327-lurshmszk4h96hr8
Tags: 3.3.1-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
 
17
17
# Declare our ETS project dependencies.
18
 
ENABLE_TRAITS = etsdep('Enable[traits]', '3.3.0')
19
 
ENTHOUGHTBASE = etsdep('EnthoughtBase', '3.0.4')
 
18
ENABLE_TRAITS = etsdep('Enable[traits]', '3.3.1')
 
19
ENTHOUGHTBASE = etsdep('EnthoughtBase', '3.0.5')
20
20
#TRAITSBACKENDQT -- not needed due to the way it is used in chaco2_plot_container_editor.py
21
 
TRAITSBACKENDWX = etsdep('TraitsBackendWX', '3.3.0')  # used by chaco_plot_editor.py
22
 
TRAITS_UI = etsdep('Traits[ui]', '3.3.0')
 
21
TRAITSBACKENDWX = etsdep('TraitsBackendWX', '3.4.0')  # used by chaco_plot_editor.py
 
22
TRAITS_UI = etsdep('Traits[ui]', '3.4.0')
23
23
 
24
24
 
25
25
INFO = {
42
42
        TRAITS_UI,
43
43
        ],
44
44
    "name": 'Chaco',
45
 
    "version": '3.3.0',
 
45
    "version": '3.3.1',
46
46
    }
47