Skip to content

Commit

Permalink
Fix pypi deployment step failing on py35 (#20)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
EmilMaric authored Mar 14, 2021
1 parent fcc6e47 commit 963fbcf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python
python:
- '3.5'
- '3.6'
- '3.7'
before_install:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 963fbcf

Please sign in to comment.