Skip to content

Commit

Permalink
bumping to 1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
timknip2 committed Jul 25, 2015
1 parent 50b4c34 commit 6074693
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ Can't thank Claus enough!
INSTALL
-------

$ pip install pyswf==1.5.3
$ pip install pyswf==1.5.4

or:

$ git clone git@github.com:timknip/pyswf.git
$ cd pyswf
$ python setup.py install

or you might need do:
Expand All @@ -19,13 +21,14 @@ or you might need do:

WINDOWS
-------
Install lxml and pylzma from a binary distribution before running setup.
Install Pillow, lxml and pylzma from a binary distribution before running setup.
- [Pillow 2.9.0](http://www.lfd.uci.edu/~gohlke/pythonlibs/#pillow)
- [lxml 3.4.0](https://pypi.python.org/pypi/lxml/3.4.0#downloads)
- [pylzma 0.4.6](http://www.lfd.uci.edu/~gohlke/pythonlibs/#pylzma)
- download the *.whl, cd into download location and run:

Installing the *.whl files:

$ pip install pylzma-VERSION.whl
$ pip install the-downloaded.whl

USAGE
-----
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def read(fname):

setup(
name='pyswf',
version='1.5.3',
version='1.5.4',
description='SWF Parsing Utilities',
long_description=read('README.md'),
keywords = "swf parser parsing decompile utilities",
Expand Down
2 changes: 1 addition & 1 deletion swf/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.5.3"
__version__ = "1.5.4"
1 change: 1 addition & 0 deletions swf/tag.py
Original file line number Diff line number Diff line change
Expand Up @@ -2651,3 +2651,4 @@ def parse(self, data, length, version=1):
y = TagFactory.create(v.TYPE)
if y == None:
#print v.__name__, 'missing', 'for', v.TYPE
pass

0 comments on commit 6074693

Please sign in to comment.