From 7547a4956397a48410cc77c42f6e26adc58da2a4 Mon Sep 17 00:00:00 2001 From: Erick Daniszewski Date: Mon, 17 Aug 2020 08:36:05 -0400 Subject: [PATCH] ci: remove support for py36 It is a bit of a bug that 3.6 was still documented as supported, since synse-server uses asyncio methods which were introduced in py37. --- .github/workflows/test.yaml | 2 +- setup.py | 5 +++-- tox.ini | 4 +--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c2762b83..2e5c0574 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - py-version: ['3.6', '3.7', '3.8'] + py-version: ['3.7', '3.8'] name: Python ${{ matrix.py-version }} Test steps: - name: Checkout diff --git a/setup.py b/setup.py index 800ceda7..9e5c6410 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ license=pkg['__license__'], packages=find_packages(exclude=['tests.*', 'tests']), include_package_data=True, - python_requires='>=3.6', + python_requires='>=3.7', package_data={ '': ['LICENSE'], }, @@ -57,6 +57,7 @@ 'Natural Language :: English', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', ] ) diff --git a/tox.ini b/tox.ini index d7e8e33d..e3e1d7f6 100644 --- a/tox.ini +++ b/tox.ini @@ -1,18 +1,16 @@ [tox] -envlist = py{36,37,38} +envlist = py{37,38} skip_missing_interpreters = True [gh-actions] python = - 3.6: py36 3.7: py37 3.8: py38,lint [testenv] basepython = - py36: python3.6 py37: python3.7 py38: python3.8 deps =