From: Eli Bendersky Date: Mon, 30 Jan 2012 17:20:41 +0000 (+0200) Subject: python 3 version and README update X-Git-Tag: v0.20 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=01d873a656611d17577352ef55229e2d2697dab4;p=pyelftools.git python 3 version and README update --- diff --git a/CHANGES b/CHANGES index 29325f7..0e52284 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,9 @@ Changelog ========= -+ Version 0.11 (??) ++ Version 0.20 (27.01.2012) + - Python 3 support - Fixed some problems with running tests - Issue #2: made all examples run (and test/run_examples_test.py pass) on Windows. diff --git a/LICENSE b/LICENSE index 05769c7..c779ed7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,10 +1,8 @@ pyelftools is in the public domain (see below if you need more details). pyelftools uses the construct library for structured parsing of a binary -stream. construct is packaged in pyelftools/construct - it is version 2.00 of -the library, slighly modified by me. This version was also released by the -original author of construct into the public domain, and its distribution with -pyelftools maintains this license. +stream. construct is packaged in pyelftools/construct - see its LICENSE +file for the license. ------------------------------------------------------------------------------- diff --git a/README b/README index a66aa28..836c1f2 100644 --- a/README +++ b/README @@ -9,8 +9,8 @@ Pre-requisites -------------- As a user of **pyelftools**, one only needs Python to run. It works with -Python versions 2.6 and 2.7 (Python 3 support is planned). For hacking -on **pyelftools** the requirements are a bit more strict, please see the +Python versions 2.6, 2.7 and 3.2. For hacking on **pyelftools** the +requirements are a bit more strict, please see the `hacking guide `_. Installing diff --git a/elftools/__init__.py b/elftools/__init__.py index 00ba785..0f14043 100644 --- a/elftools/__init__.py +++ b/elftools/__init__.py @@ -1,3 +1,3 @@ -__version__ = '0.10' +__version__ = '0.20' diff --git a/setup.py b/setup.py index bb2f3bb..50b5f95 100644 --- a/setup.py +++ b/setup.py @@ -24,14 +24,16 @@ setup( description='Library for analyzing ELF files and DWARF debugging information', long_description=description, license='Public domain', - version='0.10', + version='0.20', author='Eli Bendersky', maintainer='Eli Bendersky', author_email='eliben@gmail.com', url='https://bitbucket.org/eliben/pyelftools', platforms='Cross Platform', classifiers = [ - 'Programming Language :: Python :: 2',], + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 3', + ], # All packages and sub-packages must be listed here packages=[