Skip to content

Commit

Permalink
Dev: unittest: Enable python 3.12 in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
liangxin1300 committed Feb 18, 2024
1 parent d044c05 commit e24774d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/crmsh-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.10', '3.11']
python-version: ['3.10', '3.11', '3.12']
fail-fast: false
timeout-minutes: 5
steps:
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# content of: tox.ini , put in same dir as setup.py
[tox]
envlist = py310, py311
envlist = py310, py311, py312
skip_missing_interpreters = true

[base]
Expand All @@ -24,3 +24,8 @@ commands = {[base]commands}
changedir = {[base]changedir}
deps = {[base]deps}
commands = {[base]commands}

[testenv:3.12]
changedir = {[base]changedir}
deps = {[base]deps}
commands = {[base]commands}

0 comments on commit e24774d

Please sign in to comment.