diff --git a/.travis.yml b/.travis.yml index bc8e6af..0bc1292 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,10 +2,10 @@ language: python dist: xenial python: - - "3.4" - "3.5" - "3.6" - "3.7" + - "3.8" services: - docker diff --git a/setup.py b/setup.py index 7b4b0c0..2fdb326 100644 --- a/setup.py +++ b/setup.py @@ -68,9 +68,10 @@ setup( 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ], keywords='OpenEmbedded bitbake development', @@ -88,6 +89,6 @@ setup( 'jsonschema>=2.5.0', ], - # At least python 3.4 is needed for asyncio: - python_requires='>=3.4', + # At least python 3.5 is needed by now for PyYAML: + python_requires='>=3.5', )