From 550ce7fb7ef8d7e8802f3a8652f691b2baa91669 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Wed, 15 Jan 2020 11:57:21 +0200 Subject: [PATCH] .travis.yml: Only test Python 3.8 The Unicode normalization feature requires Python 3.8 because the unicodedata.is_normalized() function only appears there. If I find another way to check if a string is normalized without normalizing it first I will drop the requirements back down to Python 3.6. See: https://docs.python.org/3/library/unicodedata.html --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 02350a3..e38879c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,6 @@ dist: bionic language: python python: - - "3.6" - - "3.7" - "3.8" install: - "pip install -r requirements.txt"