From a4dafd6d512bc3e35e845fc1886dc4c6674cd7d2 Mon Sep 17 00:00:00 2001 From: Frank Wiles Date: Sat, 27 Jan 2024 10:05:41 -0600 Subject: [PATCH 1/4] Test and Support Python 3.12 --- .github/workflows/ci.yml | 1 + setup.cfg | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 542961b3..e7c87e1a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,6 +66,7 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" django-version: - "2.2" - "3.2" diff --git a/setup.cfg b/setup.cfg index fe59d1f8..ef2cdfab 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,6 +27,7 @@ classifier = Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 + Programming Language :: Python :: 3.12 Topic :: Software Development :: Quality Assurance Topic :: System :: Logging Topic :: System :: Monitoring From fb535554b00f38df3ba134ae598ce0ba3a8c3c12 Mon Sep 17 00:00:00 2001 From: Frank Wiles Date: Sat, 27 Jan 2024 10:14:48 -0600 Subject: [PATCH 2/4] Adjust matrix to not test 2.2 with 3.12 --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7c87e1a..48d19344 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,6 +72,9 @@ jobs: - "3.2" - "4.1" - "4.2" + exclude: + - python-version: "3.10" + django-versin: "2.2" steps: - uses: actions/checkout@v3 - name: Setup Python version ${{ matrix.python-version }} From 5ea3ae0cb83e6eb26f3d456dc52c0efaf97dd144 Mon Sep 17 00:00:00 2001 From: Frank Wiles Date: Sat, 27 Jan 2024 10:15:21 -0600 Subject: [PATCH 3/4] Fix typo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48d19344..f8f30717 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,7 +74,7 @@ jobs: - "4.2" exclude: - python-version: "3.10" - django-versin: "2.2" + django-version: "2.2" steps: - uses: actions/checkout@v3 - name: Setup Python version ${{ matrix.python-version }} From b197e1bc871fec324d7d12d8f7bc4650edb1c500 Mon Sep 17 00:00:00 2001 From: Frank Wiles Date: Sat, 27 Jan 2024 10:18:27 -0600 Subject: [PATCH 4/4] Fix yet another typo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f8f30717..a131a11e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: - "4.1" - "4.2" exclude: - - python-version: "3.10" + - python-version: "3.12" django-version: "2.2" steps: - uses: actions/checkout@v3