From bcee2d20f146a9a82eb19a4c58350fec8953de0d Mon Sep 17 00:00:00 2001 From: debugtalk Date: Sat, 13 Jul 2019 01:25:43 +0800 Subject: [PATCH] drop support for Python 3.4 as it was EOL on 2019-03-16 --- .travis.yml | 3 +-- CHANGELOG.md | 1 + pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8bf810cc..b0f4f2b8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,6 @@ sudo: false language: python python: - 2.7 - - 3.4 - 3.5 - 3.6 matrix: @@ -12,7 +11,7 @@ matrix: sudo: true install: - pip install poetry - - poetry install -v + - poetry install -vvv script: - poetry build - poetry run coverage run --source=httprunner -m unittest discover diff --git a/CHANGELOG.md b/CHANGELOG.md index b1ce76f7..ec242196 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ **Features** - replace pipenv & setup.py with poetry +- drop support for Python 3.4 as it was EOL on 2019-03-16 ## 2.2.3 diff --git a/pyproject.toml b/pyproject.toml index 9976e4d6..450f7eed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ classifiers = [ include = ["CHANGELOG.md", "httprunner/templates/*"] [tool.poetry.dependencies] -python = "~2.7 || ^3.4" +python = "~2.7 || ^3.5" requests = "^2.14" requests-toolbelt = "^0.9.1" pyyaml = "^5.1"