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 3
3
4
4
# the version of software
5
5
# this is used by the setup.py script
6
- __version__ = '20120816'
6
+ from version import __version__
7
7
8
8
# make 'from module import *' work dynamically.
9
9
# 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 3
3
from distutils .core import setup
4
4
import sys
5
5
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' )
7
10
8
11
os_x_requires = ['pyglet(>=1.2)' , 'pyobjc(==2.2)' ]
9
12
other_requires = ['pyglet' ]
You can’t perform that action at this time.
0 commit comments