From ba95d984ad801f4646deead726821a9c681e43e8 Mon Sep 17 00:00:00 2001 From: Marlon Rodriguez Garcia Date: Mon, 26 Dec 2022 11:19:09 -0500 Subject: [PATCH] Change python3.6 to python3.11 because deprecation in ubuntu 22.04 --- .github/workflows/ci.yml | 2 +- setup.py | 2 +- tox.ini | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9bc095e5..159b7ebe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9, '3.10'] + python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] steps: - uses: actions/checkout@v2 diff --git a/setup.py b/setup.py index 3565f62d..af434625 100644 --- a/setup.py +++ b/setup.py @@ -27,11 +27,11 @@ 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU Library or Lesser General Public License ' '(LGPL)', - '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', 'Topic :: Software Development :: Internationalization', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: Localization', diff --git a/tox.ini b/tox.ini index 11cf12a3..8e334bcf 100644 --- a/tox.ini +++ b/tox.ini @@ -1,13 +1,13 @@ [tox] -envlist = py36,py37,py38,py39,py310,flake8,isort +envlist = py37,py38,py39,py310,py311,flake8,isort [gh-actions] python = - 3.6: py36 3.7: py37 3.8: py38 3.9: py39 3.10: isort, flake8, py310 + 3.11: py311 [testenv] @@ -23,7 +23,7 @@ commands = [testenv:flake8] changedir = {toxinidir} deps = - flake8 + flake8==5.0.4 flake8-copyright commands = flake8