From f54697fb735ff7f47f3b8519e3e19418907a3a1b Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Fri, 4 May 2018 14:34:43 -0700 Subject: [PATCH] Show support for Python 3.6 Now that Travis CI is testing Bandit on Python 3.6, the metadata classifier of setup.cfg should declare this. Signed-off-by: Eric Brown --- README.rst | 4 ++-- setup.cfg | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index b4d16457e..af7927346 100644 --- a/README.rst +++ b/README.rst @@ -46,8 +46,8 @@ Create a virtual environment (optional):: Install Bandit:: pip install bandit - # Or if you're working with a Python 3.5 project - pip3.5 install bandit + # Or if you're working with a Python 3 project + pip3 install bandit Run Bandit:: diff --git a/setup.cfg b/setup.cfg index e4bb7a7a2..c64a45edc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,6 +19,7 @@ classifier = Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 Topic :: Security [entry_points]