From b27510496cc1a91cee95b1dc05422c1c576acae9 Mon Sep 17 00:00:00 2001 From: Jonas Depoix Date: Mon, 31 Aug 2020 13:43:19 +0200 Subject: [PATCH] added python 3.8 support; dropped python 3.4 support due to build failure with new requests version --- .travis.yml | 8 ++------ setup.py | 7 +++++-- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 721f970..10deb0a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,10 @@ language: python python: - "2.7" - - "3.4" - "3.5" - "3.6" -matrix: - include: - - python: 3.7 - dist: xenial - sudo: true + - "3.7" + - "3.8" install: - pip install -r requirements.txt script: diff --git a/setup.py b/setup.py index 1490707..9ab3e33 100644 --- a/setup.py +++ b/setup.py @@ -34,8 +34,11 @@ setuptools.setup( url="https://github.com/jdepoix/youtube-transcript-api", packages=setuptools.find_packages(), classifiers=( - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 3", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ),