Remove py35 support

As the default Docker image support for Pegleg is using py36 as a base
image, this patch set simply removes the support for py35. This allows
us to use py36 features such as secrets and f-strings without needing to
cope with backward compatibility.

Change-Id: Ic156ca67d2a0fe6fdc74c2c9da253a1cb8a3f456
Signed-off-by: Tin Lam <tin@irrational.io>
This commit is contained in:
Tin Lam
2018-10-31 11:37:03 -05:00
parent 178c058474
commit 253b15cc33
4 changed files with 22 additions and 23 deletions

View File

@@ -52,7 +52,7 @@ security:
# Run all unit tests under pegleg
.PHONY: run_tests
run_tests:
tox -e py35
tox -e py36
# Perform Linting
.PHONY: lint