From 8cbdb8a1d7231021a64e1ffa236fd086e90c1df3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl>
Date: Wed, 26 May 2021 22:22:40 +0200
Subject: [PATCH] add python 3.6

---
 .travis.yml | 4 ++++
 setup.cfg   | 5 ++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 90dced0..7c5be4b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,6 +17,10 @@ jobs:
       python: "3.8"
       script:
         - pytest --cov=./ --cov-report=xml
+    - stage: test
+      python: "3.6"
+      script:
+        - pytest --cov=./ --cov-report=xml
     - stage: test
       python: "3.7"
       script:
diff --git a/setup.cfg b/setup.cfg
index ce6c0ac..de2ae17 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -5,6 +5,8 @@ name = minijson
 long-description = file: README.md
 long-description-content-type = text/markdown; charset=UTF-8
 author = Piotr Maślanka
+license_files =
+    LICENSE.md
 author_email = piotr.maslanka@dronehub.ai
 description = A library for serializing JSON in a small binary format
 url = https://github.com/Dronehub/minijson
@@ -15,6 +17,7 @@ project-urls =
 classifier =
     Development Status :: 4 - Beta
     Programming Language :: Python
+    Programming Language :: Python :: 3.6
     Programming Language :: Python :: 3.7
     Programming Language :: Python :: 3.8
     Programming Language :: Python :: 3.9
@@ -33,4 +36,4 @@ max-line-length = 100
 universal = 0
 
 [options]
-python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*
+python_requires = !=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*
-- 
GitLab