From a3bf4eb40b1fafe6207140e088878a0b565cde56 Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Sat, 19 Oct 2019 15:01:47 -0700 Subject: [PATCH] Add Python 3.8 to the test matrix Python 3.8 was released on October 14th, 2019. --- .travis.yml | 2 ++ README.md | 2 +- docs/installation.rst | 2 +- setup.py | 1 + tox.ini | 2 +- 5 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1d91943653..d089a6cfe8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,8 @@ language: python cache: pip matrix: include: + - python: 3.8 + env: TOXENV=py38 - python: 3.7 env: TOXENV=py37 dist: xenial diff --git a/README.md b/README.md index 0516a669f2..407fecd1d3 100644 --- a/README.md +++ b/README.md @@ -74,4 +74,4 @@ Open source licensed under the MIT license (see _LICENSE_ file for details). ## Supported Python Versions -Locust is supported on Python 2.7, 3.5, 3.6, 3.7. +Locust is supported on Python 2.7, 3.5, 3.6, 3.7, 3.8. diff --git a/docs/installation.rst b/docs/installation.rst index 7b6182142b..e84a7f1476 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -34,7 +34,7 @@ To see available options, run: Supported Python Versions ------------------------- -Locust is supported on Python 2.7, 3.5, 3.6, 3.7. +Locust is supported on Python 2.7, 3.5, 3.6, 3.7, 3.8. Installing Locust on Windows diff --git a/setup.py b/setup.py index 1b3a22ecc8..d74cb1ba38 100644 --- a/setup.py +++ b/setup.py @@ -30,6 +30,7 @@ "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Intended Audience :: Developers", "Intended Audience :: System Administrators", ], diff --git a/tox.ini b/tox.ini index 1ec0cfc0bc..d65dc8fdee 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py35, py36, py37 +envlist = py{27,35,36,37,38} [testenv] deps =