Skip to content

Commit 04184da

Browse files
Added Python 3.6+ note to setup.py and README (fixes #278) (#279)
* updated README * updated setup.py * updated classifiers * updated version
1 parent 548b8a6 commit 04184da

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ roswire
55

66
.. image:: https://travis-ci.org/ChrisTimperley/roswire.svg?branch=master
77
:target: https://travis-ci.org/ChrisTimperley/roswire
8+
.. image:: https://badge.fury.io/py/roswire.svg
9+
:target: https://badge.fury.io/py/roswire
10+
.. image:: https://img.shields.io/pypi/pyversions/roswire.svg
11+
:target: https://pypi.org/project/roswire
812

913

1014
ROSWire is a Python library for static and dynamic analysis of
@@ -36,6 +40,8 @@ Features
3640
Installation
3741
------------
3842

43+
roswire requires Python 3.6+
44+
3945
To avoid interfering with the rest of your system (i.e., to avoid Python's
4046
equivalent of DLL hell), we strongly recommend that
4147
ROSWire is installed within a

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
setup(
1212
name='roswire',
1313
version=__version__,
14-
python_requires='>=3.5',
14+
python_requires='>=3.6',
1515
description='An API for testing and mutating ROS systems.',
1616
author='Chris Timperley',
1717
author_email='[email protected]',
@@ -40,7 +40,6 @@
4040
'Natural Language :: English',
4141
'Programming Language :: Python',
4242
'Programming Language :: Python :: 3',
43-
'Programming Language :: Python :: 3.5',
4443
'Programming Language :: Python :: 3.6',
4544
'Programming Language :: Python :: 3.7'
4645
],

src/roswire/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.0.3'
1+
__version__ = '0.0.4'

0 commit comments

Comments
 (0)