From 1789d8b6f98c4c951619e6f1a3a3842b69e5e468 Mon Sep 17 00:00:00 2001 From: auouymous Date: Tue, 24 Oct 2023 04:17:51 -0600 Subject: [PATCH 1/2] Switch from distutils to setuptools. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6312225..3f51108 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python -from distutils.core import setup +from setuptools import setup import re import os.path From d660b9cc4a533fdeafdeb2dfae21df9c01494197 Mon Sep 17 00:00:00 2001 From: auouymous Date: Fri, 3 Nov 2023 03:07:11 -0600 Subject: [PATCH 2/2] Add Python 3.12 to tests, and drop 3.7 --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4fc7d06..760901f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -14,7 +14,7 @@ jobs: github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3