added python 3.8 support; dropped python 3.4 support due to build failure with new requests version

This commit is contained in:
Jonas Depoix 2020-08-31 13:43:19 +02:00
parent 8bab30a770
commit b27510496c
2 changed files with 7 additions and 8 deletions

View File

@ -1,14 +1,10 @@
language: python language: python
python: python:
- "2.7" - "2.7"
- "3.4"
- "3.5" - "3.5"
- "3.6" - "3.6"
matrix: - "3.7"
include: - "3.8"
- python: 3.7
dist: xenial
sudo: true
install: install:
- pip install -r requirements.txt - pip install -r requirements.txt
script: script:

View File

@ -34,8 +34,11 @@ setuptools.setup(
url="https://github.com/jdepoix/youtube-transcript-api", url="https://github.com/jdepoix/youtube-transcript-api",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
classifiers=( classifiers=(
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "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", "License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", "Operating System :: OS Independent",
), ),