From 963fbcfbf36f91d137f4ccdaeadce59bdbb6928d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20Mari=C4=87?= Date: Sun, 14 Mar 2021 13:00:59 -0700 Subject: [PATCH] Fix pypi deployment step failing on py35 (#20) Travis can't deploy to pypi if the python version is 3.5 because pip stopped supporting python version 3.5. It's probably easier just to drop python3.5 support altogether for this app to get it to work with travis. --- .travis.yml | 1 - pyproject.toml | 2 +- tox.ini | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6282585..6666c19 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: python python: - - '3.5' - '3.6' - '3.7' before_install: diff --git a/pyproject.toml b/pyproject.toml index 8af0471..16dd596 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ keywords = [ ] [tool.poetry.dependencies] -python = "^3.5" +python = "^3.6" click = "^7.1.2" tabulate = "^0.8.7" requests = "^2.23.0" diff --git a/tox.ini b/tox.ini index 0e0d89d..2758ff8 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] isolated_build = true skipsdist=true -envlist = py{35,36,37},flake8 +envlist = py{36,37},flake8 [testenv] whitelist_externals = poetry