diff --git a/.github/workflows/next.yml b/.github/workflows/next.yml index 57a52d3..14c3c64 100644 --- a/.github/workflows/next.yml +++ b/.github/workflows/next.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] steps: - name: Check out repo uses: actions/checkout@v3 diff --git a/setup.py b/setup.py index fccff1a..cec38c7 100644 --- a/setup.py +++ b/setup.py @@ -70,11 +70,12 @@ setup( 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', ], keywords='OpenEmbedded bitbake development', @@ -95,6 +96,6 @@ setup( 'kconfiglib>=14.1.0,<15', ], - # At least python 3.5 is needed by now for PyYAML: - python_requires='>=3.5', + # At least python 3.6 is needed by now: + python_requires='>=3.6', )