Fri, 16 Nov 2012 13:07:15 +0100
setup.py: Adding install_requires for tex2pix so that PyPI/easy_install/pip automatic dependency handling will work. Version 1.4.2
ChangeLog | file | annotate | diff | comparison | revisions | |
pyslha.py | file | annotate | diff | comparison | revisions | |
setup.py | file | annotate | diff | comparison | revisions |
1.1 --- a/ChangeLog Mon Mar 19 17:00:52 2012 +0000 1.2 +++ b/ChangeLog Fri Nov 16 13:07:15 2012 +0100 1.3 @@ -1,3 +1,10 @@ 1.4 +2012-11-16 Andy Buckley <andy.buckley@cern.ch> 1.5 + 1.6 + * Version 1.4.2 1.7 + 1.8 + * setup.py: Adding install_requires for tex2pix so that 1.9 + PyPI/easy_install/pip automatic dependency handling will work. 1.10 + 1.11 2012-03-19 Andy Buckley <andy.buckley@cern.ch> 1.12 1.13 * Adding a naive --aspect-ratio option, but the output is not ideal.
2.1 --- a/pyslha.py Mon Mar 19 17:00:52 2012 +0000 2.2 +++ b/pyslha.py Fri Nov 16 13:07:15 2012 +0100 2.3 @@ -24,7 +24,7 @@ 2.4 """ 2.5 2.6 __author__ = "Andy Buckley <andy.buckley@cern.ch" 2.7 -__version__ = "1.4.1" 2.8 +__version__ = "1.4.2" 2.9 2.10 2.11 def _autotype(var):
3.1 --- a/setup.py Mon Mar 19 17:00:52 2012 +0000 3.2 +++ b/setup.py Fri Nov 16 13:07:15 2012 +0100 3.3 @@ -10,7 +10,7 @@ 3.4 version = pyslha.__version__, 3.5 py_modules = ["pyslha"], 3.6 scripts = ["slhaplot", "slha2isawig", "isawig2slha"], 3.7 - requires = ["tex2pix (>=0.1.5)"], 3.8 + install_requires = ["tex2pix (>=0.1.5)"], 3.9 author = 'Andy Buckley', 3.10 author_email = 'andy@insectnation.org', 3.11 url = 'http://www.insectnation.org/projects/pyslha',