From 23552a1f1c9b6237aaba0ae5afb59322adc122a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Mrozek?= Date: Sun, 25 Feb 2024 13:47:36 +0100 Subject: [PATCH] build: add python 3.12 to pipelines --- .github/workflows/tox.yml | 2 +- tox.ini | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index c31e0aa..846c324 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -10,7 +10,7 @@ jobs: if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }} strategy: matrix: - python-version: ["3.11"] + python-version: ["3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/tox.ini b/tox.ini index 941065b..52e9c21 100644 --- a/tox.ini +++ b/tox.ini @@ -1,12 +1,13 @@ [tox] skipsdist = true -envlist = py{311}, lint, typing +envlist = py{311,312}, lint, typing skip_missing_interpreters = True cs_exclude_words = hass,unvalid [gh-actions] python = 3.11: clean, py311, lint, typing + 3.12: clean, py312, lint, typing [testenv] passenv = TOXENV,CI