From 893441f4e41195e3663c5168afed4a9043465238 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Thu, 4 Oct 2018 04:03:09 +0530 Subject: [PATCH 1/3] Add python versions --- .travis.yml | 3 +++ setup.py | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index cfde80de..57f147b5 100755 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,10 @@ language: python cache: pip python: - "2.7" + - "3.4" + - "3.5" - "3.6" + - "3.7" before_install: - sudo apt-get install python-tk python3-tk ghostscript install: diff --git a/setup.py b/setup.py index 8b239c67..de1ac56e 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,10 @@ def setup_package(): # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.6' + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7' ]) try: From c4ded3ebd50c46d3d442227a0750a7e4e4807d7e Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Thu, 4 Oct 2018 17:23:08 +0530 Subject: [PATCH 2/3] Add MANIFEST.in --- .travis.yml | 7 +++++-- MANIFEST.in | 7 +++++++ setup.py | 1 - 3 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 MANIFEST.in diff --git a/.travis.yml b/.travis.yml index 57f147b5..91f30879 100755 --- a/.travis.yml +++ b/.travis.yml @@ -3,10 +3,13 @@ language: python cache: pip python: - "2.7" - - "3.4" - "3.5" - "3.6" - - "3.7" +matrix: + include: + - python: 3.7 + dist: xenial + sudo: true before_install: - sudo apt-get install python-tk python3-tk ghostscript install: diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..f7cc78fc --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,7 @@ +include MANIFEST.in +include setup.py +include setup.cfg +include README.md +include LICENSE +include requirements.txt +include requirements-dev.txt \ No newline at end of file diff --git a/setup.py b/setup.py index de1ac56e..8d5fe828 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,6 @@ def setup_package(): # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7' From 85c21669320803a61060bb3b7a41d2f801215584 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Thu, 4 Oct 2018 19:10:36 +0530 Subject: [PATCH 3/3] Bump numpy version --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index a90441dc..9a375f7d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ click==6.7 matplotlib==2.2.3 -numpy==1.13.3 +numpy==1.15.2 opencv-python==3.4.2.17 pandas==0.23.4 pdfminer.six==20170720