From 04184da18264b190dc82b993df7e9732b3f9575a Mon Sep 17 00:00:00 2001 From: Chris Timperley Date: Mon, 8 Jul 2019 14:09:36 -0400 Subject: [PATCH] Added Python 3.6+ note to setup.py and README (fixes #278) (#279) * updated README * updated setup.py * updated classifiers * updated version --- README.rst | 6 ++++++ setup.py | 3 +-- src/roswire/version.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index fcac188b..b0cb6f1f 100644 --- a/README.rst +++ b/README.rst @@ -5,6 +5,10 @@ roswire .. image:: https://travis-ci.org/ChrisTimperley/roswire.svg?branch=master :target: https://travis-ci.org/ChrisTimperley/roswire +.. image:: https://badge.fury.io/py/roswire.svg + :target: https://badge.fury.io/py/roswire +.. image:: https://img.shields.io/pypi/pyversions/roswire.svg + :target: https://pypi.org/project/roswire ROSWire is a Python library for static and dynamic analysis of @@ -36,6 +40,8 @@ Features Installation ------------ +roswire requires Python 3.6+ + To avoid interfering with the rest of your system (i.e., to avoid Python's equivalent of DLL hell), we strongly recommend that ROSWire is installed within a diff --git a/setup.py b/setup.py index c09bd37b..c0d0f9b1 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='roswire', version=__version__, - python_requires='>=3.5', + python_requires='>=3.6', description='An API for testing and mutating ROS systems.', author='Chris Timperley', author_email='christimperley@googlemail.com', @@ -40,7 +40,6 @@ 'Natural Language :: English', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7' ], diff --git a/src/roswire/version.py b/src/roswire/version.py index ffcc925a..156d6f9a 100644 --- a/src/roswire/version.py +++ b/src/roswire/version.py @@ -1 +1 @@ -__version__ = '0.0.3' +__version__ = '0.0.4'