Skip to content

Commit

Permalink
Merge pull request #494 from savoirfairelinux/Change_py36_for_py311
Browse files Browse the repository at this point in the history
Change python3.6 to python3.11 because deprecation in ubuntu 22.04
  • Loading branch information
mrodriguezg1991 authored Dec 26, 2022
2 parents 743c535 + ba95d98 commit 4ae4fde
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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]
Expand All @@ -23,7 +23,7 @@ commands =
[testenv:flake8]
changedir = {toxinidir}
deps =
flake8
flake8==5.0.4
flake8-copyright
commands =
flake8
Expand Down

0 comments on commit 4ae4fde

Please sign in to comment.