Changeset 1145

Show
Ignore:
Timestamp:
03/06/07 01:06:52 (2 years ago)
Author:
arjanmol
Message:

Added dependency to decorator 2.0.1

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphas/trunk/demo.py

    r1134 r1145  
    2222    """Box with an example connection protocol. 
    2323    """ 
    24  
    25     def __init__(self, width=10, height=10): 
    26         super(MyBox, self).__init__(width, height) 
    2724 
    2825class MyLine(Line): 
  • gaphas/trunk/gaphas/examples.py

    r1134 r1145  
    1818     SW +---+ SE 
    1919    """ 
    20     min_width = 10 
    21     min_height = 10 
     20 
    2221    def __init__(self, width=10, height=10): 
    23         #super(Box, self).__init__(width, height) 
    24         print 'Box.__init__' 
    25         Element.__init__(self,width, height) 
     22        super(Box, self).__init__(width, height) 
    2623 
    2724    def draw(self, context): 
  • gaphas/trunk/setup.py

    r1096 r1145  
    88setup( 
    99    name='gaphas', 
    10     version='0.1.0', 
     10    version='0.1.1', 
    1111    description='Gaphas is a GTK+ based diagramming widget', 
    1212    long_description="""\ 
     
    3838 
    3939    install_requires=[ 
    40     'PyGTK >= 2.8.0', 
     40     'decorator >= 2.0.1', 
     41#    'PyGTK >= 2.8.0', 
    4142    ], 
    4243