From 21fd2bbd23067bf933bad8acf87bcf205c7a1331 Mon Sep 17 00:00:00 2001 From: Philippe Guglielmetti Date: Tue, 2 Feb 2016 15:38:51 +0100 Subject: [PATCH] v 20160202 with Py 2.6 & Py 3.5 support --- .gitignore | 14 ++++++++++++++ .travis.yml | 22 ++++++++++++---------- pdfminer/__init__.py | 12 ++++++------ setup.py | 2 ++ 4 files changed, 34 insertions(+), 16 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..32b9f67 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +*.class +*.pyc +*.pyo +.svn +_svn +.pythoscope +.ipynb_checkpoints +.settings +_update.bat +docs/_build +/Goulib.egg-info/ +/build/ +/dist/ +/pdfminer.six.egg-info/ diff --git a/.travis.yml b/.travis.yml index 51615bd..18f28a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,12 @@ -language: python -python: - - "2.7" - - "3.4" -install: - - pip install six - - pip install pycrypto - - pip install chardet -script: - nosetests --nologcapture +language: python +python: + - "2.6" + - "2.7" + - "3.4" + - "3.5" +install: + - pip install six + - pip install pycrypto + - pip install chardet +script: + nosetests --nologcapture diff --git a/pdfminer/__init__.py b/pdfminer/__init__.py index 54c5713..e803bfe 100644 --- a/pdfminer/__init__.py +++ b/pdfminer/__init__.py @@ -1,6 +1,6 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- -__version__ = '20150601' - -if __name__ == '__main__': - print (__version__) +#!/usr/bin/env python +# -*- coding: utf-8 -*- +__version__ = '20160202' + +if __name__ == '__main__': + print (__version__) diff --git a/setup.py b/setup.py index 5fe5838..7f465a5 100644 --- a/setup.py +++ b/setup.py @@ -33,8 +33,10 @@ PDF parser that can be used for other purposes instead of text analysis.''', keywords=['pdf parser', 'pdf converter', 'layout analysis', 'text mining'], classifiers=[ 'Programming Language :: Python', + 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers',