Skip to content

Commit

Permalink
Add Python 3.12-rc test runner (#290)
Browse files Browse the repository at this point in the history
* Add Python 3.12 test runner

* Update ci.yml
  • Loading branch information
farmio authored Oct 2, 2023
1 parent 19dc543 commit a7ca21e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12-dev']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ version = {attr = "xknxproject.__version__.__version__"}
include = ["xknxproject*"]

[tool.black]
target-version = ["py39", "py310", "py311"]
target-version = ["py39", "py310", "py311", "py312"]
exclude = "generated"


Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py39, py310, py311, typing, lint, pylint
envlist = py39, py310, py311, py312, typing, lint, pylint
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit a7ca21e

Please sign in to comment.