Skip to content

Commit

Permalink
Add Python 3.11 to CI/CD pipeline (#626)
Browse files Browse the repository at this point in the history
I read that support for Python 3.9 has been dropped in core so I guess
we could drop it here too. Before doing that, I propose we add 3.11 to
the pipeline run.
  • Loading branch information
ggravlingen authored Feb 5, 2023
1 parent 99c50e9 commit 0f1a715
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
python-version:
- "3.9"
- "3.10"
- "3.11"

steps:
- uses: actions/[email protected]
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Home Automation",
],
)
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[tox]
envlist = py39, py310, lint, typing, coverage
envlist = py39, py310, py311, lint, typing, coverage
skip_missing_interpreters = True

[gh-actions]
python =
3.9: py39, lint, typing, coverage
3.10: py310
3.11: py311

[testenv]
commands =
Expand Down

0 comments on commit 0f1a715

Please sign in to comment.