File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 33
44# the version of software
55# this is used by the setup.py script
6- __version__ = '20120816'
6+ from version import __version__
77
88# make 'from module import *' work dynamically.
99# otherwise we have to manually update the __all__ list.
Original file line number Diff line number Diff line change 1+ # the version of software
2+ # this is used by the setup.py script
3+ __version__ = '20120816'
4+
Original file line number Diff line number Diff line change 33from distutils .core import setup
44import sys
55
6- from pygly import __version__
6+ # get pygly's version but don't import it
7+ # or we'll need our dependencies already installed
8+ # https://github.com/todddeluca/happybase/commit/63573cdaefe3a2b98ece87e19d9ceb18f00bc0d9
9+ execfile ('pygly/version.py' )
710
811os_x_requires = ['pyglet(>=1.2)' , 'pyobjc(==2.2)' ]
912other_requires = ['pyglet' ]
You can’t perform that action at this time.
0 commit comments