From b2dee6d598539b078b2ffac7722f15a4ef64110b Mon Sep 17 00:00:00 2001 From: Emmanuelle Vargas-Gonzalez Date: Thu, 14 Jan 2021 14:59:35 -0500 Subject: [PATCH] update Python build matrix --- .github/workflows/python-ci-tests.yml | 2 +- setup.py | 2 +- tox.ini | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-ci-tests.yml b/.github/workflows/python-ci-tests.yml index 9bc7789..216061e 100644 --- a/.github/workflows/python-ci-tests.yml +++ b/.github/workflows/python-ci-tests.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.5, 3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 3.9] name: Python ${{ matrix.python-version }} Build steps: diff --git a/setup.py b/setup.py index aaf7612..9deb5ab 100644 --- a/setup.py +++ b/setup.py @@ -40,10 +40,10 @@ def get_long_description(): 'Topic :: Security', 'License :: OSI Approved :: BSD 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', ], keywords='taxii taxii2 client json cti cyber threat intelligence', packages=find_packages(exclude=['*.test']), diff --git a/tox.ini b/tox.ini index c86084b..59ca9ad 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35,py36,py37,py38,packaging,pre-commit-check +envlist = py36,py37,py38,py39,packaging,pre-commit-check [testenv] deps = @@ -29,7 +29,7 @@ commands = [gh-actions] python = - 3.5: py35 3.6: py36 3.7: py37 - 3.8: py38, packaging, pre-commit-check + 3.8: py38 + 3.9: py39, packaging, pre-commit-check