Skip to content

Commit

Permalink
Include python 3.6-3.11
Browse files Browse the repository at this point in the history
Signed-off-by: NjM3MjY5NzAgNzA3MzA3 <[email protected]>
  • Loading branch information
NjM3MjY5NzAgNzA3MzA3 committed Aug 2, 2023
1 parent c692880 commit c744ef5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python: ["3.8", "3.9", "3.10", "3.11"] # "3.6", "3.7" are EOL
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]

include:
- os: [ubuntu-20.04]
python: ["3.6"]
- os: [windows-2019]
python: ["3.6"]

steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,8 @@
'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 :: Libraries :: Python Modules',
])
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
minversion = 3.14.3
skipdist = True
envlist = py3{6,7,8,9,10},flake8,cover,docs
envlist = py3{6,7,8,9,1,11},flake8,cover,docs

[testenv]
setenv = VIRTUAL_ENV={envdir}
Expand Down

0 comments on commit c744ef5

Please sign in to comment.