From ecc682742e4b315fc01f385d1b1636ffbe0eb772 Mon Sep 17 00:00:00 2001 From: Asif Saif Uddin Date: Sun, 5 Nov 2023 15:31:21 +0600 Subject: [PATCH] added python 3.12 to CI --- .github/workflows/ci.yaml | 4 ++-- tox.ini | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c5542d6..adb71db 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,12 +6,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - name: Install system packages run: sudo apt update && sudo apt-get install libcurl4-openssl-dev libssl-dev - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} id: python uses: actions/setup-python@main diff --git a/tox.ini b/tox.ini index cb6ee1f..a3265b8 100644 --- a/tox.ini +++ b/tox.ini @@ -1,16 +1,16 @@ [tox] requires = tox-gh-actions -envlist = {3.7,3.8,3.9,3.10,3.11}-unit +envlist = {3.8,3.9,3.10,3.11,3.12}-unit skip_missing_interpreters = True [gh-actions] python = - 3.7: 3.7-unit 3.8: 3.8-unit 3.9: 3.9-unit 3.10: 3.10-unit 3.11: 3.11-unit + 3.12: 3.12-unit [testenv] distribute = True