From 0653f3b36537a3c44edbfa67854c396367df2694 Mon Sep 17 00:00:00 2001 From: Yan Kalchevksiy Date: Mon, 7 Mar 2022 19:40:18 +0600 Subject: [PATCH] Update python --- .travis.yml | 12 ++++++++---- setup.py | 6 ++++-- tox.ini | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index e25bb1d..48fd52e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,12 +13,16 @@ matrix: include: - python: "2.7" env: TOXENV=py27 - - python: "3.4" - env: TOXENV=py34 - - python: "3.5" - env: TOXENV=py35 - python: "3.6" env: TOXENV=py36 + - python: "3.7" + env: TOXENV=py37 + - python: "3.8" + env: TOXENV=py38 + - python: "3.9" + env: TOXENV=py39 + - python: "3.10" + env: TOXENV=py310 install: - pip install tox diff --git a/setup.py b/setup.py index 31e0f54..733cf94 100644 --- a/setup.py +++ b/setup.py @@ -28,9 +28,11 @@ def get_long_description(): 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', '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', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: Implementation :: CPython', 'Topic :: Security :: Cryptography', ], diff --git a/tox.ini b/tox.ini index 4b9b5a7..f8e2195 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py34, py35, py36 +envlist = py27, py36, py37, py38, py39, py310 [testenv] commands = py.test -v -n {posargs:2} --flakes --isort --pep257 --pep8