Fri, 16 Nov 2012 13:11:44 +0100
Tweak to setup and version bump to allow PyPI upload
ChangeLog | file | annotate | diff | comparison | revisions | |
pyslha.py | file | annotate | diff | comparison | revisions | |
setup.py | file | annotate | diff | comparison | revisions |
1.1 --- a/ChangeLog Fri Nov 16 13:07:27 2012 +0100 1.2 +++ b/ChangeLog Fri Nov 16 13:11:44 2012 +0100 1.3 @@ -1,6 +1,6 @@ 1.4 2012-11-16 Andy Buckley <andy.buckley@cern.ch> 1.5 1.6 - * Version 1.4.2 1.7 + * Version 1.4.2, 1.4.3 1.8 1.9 * setup.py: Adding install_requires for tex2pix so that 1.10 PyPI/easy_install/pip automatic dependency handling will work.
2.1 --- a/pyslha.py Fri Nov 16 13:07:27 2012 +0100 2.2 +++ b/pyslha.py Fri Nov 16 13:11:44 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.2" 2.8 +__version__ = "1.4.3" 2.9 2.10 2.11 def _autotype(var):
3.1 --- a/setup.py Fri Nov 16 13:07:27 2012 +0100 3.2 +++ b/setup.py Fri Nov 16 13:11:44 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 - install_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',