diff --git a/.travis.yml b/.travis.yml index d75ad6b..b683061 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,6 @@ - python: 3.7 dist: xenial sudo: true - env: OPTIONAL=1 - python: 3.6 - python: 3.5 - python: 3.4 @@ -31,7 +30,6 @@ allow_failures: - env: OPTIONAL=1 - - env: PYTHON=3.7.0 TOXENV=py37 fast_finish: true @@ -77,4 +75,4 @@ on: tags: true repo: DiamondLightSource/python-procrunner - python: 3.6 + python: 3.7 diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index cb53bbd..2b09b38 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -102,7 +102,7 @@ 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. -3. The pull request should work for Python 2.7, 3.4, 3.5 and 3.6, and for PyPy. Check +3. The pull request should work for Python 2.7, 3.4, 3.5, 3.6, 3.7, and for PyPy. Check https://travis-ci.org/DiamondLightSource/python-procrunner/pull_requests and make sure that the tests pass for all supported Python versions. diff --git a/HISTORY.rst b/HISTORY.rst index e9a1b8f..d22070c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ ======= History ======= + +0.7.2 (2018-10-05) +------------------ + +* Officially support Python 3.7 0.7.1 (2018-09-03) ------------------ diff --git a/README.rst b/README.rst index d009e00..b5babd1 100644 --- a/README.rst +++ b/README.rst @@ -20,6 +20,8 @@ :target: https://pyup.io/repos/github/DiamondLightSource/python-procrunner/ :alt: Updates +.. image:: https://img.shields.io/pypi/pyversions/procrunner.svg + :target: https://pypi.python.org/pypi/procrunner Versatile utility function to run external processes diff --git a/setup.py b/setup.py index 0b1222a..f05ec95 100644 --- a/setup.py +++ b/setup.py @@ -36,6 +36,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python :: Implementation :: CPython', 'Topic :: Software Development :: Libraries :: Python Modules',