From e5fb9f28088f1370e7b5dd37914f4f5fd6851a80 Mon Sep 17 00:00:00 2001 From: Laurent Rene de Cotret Date: Wed, 23 Oct 2024 13:26:15 -0400 Subject: [PATCH] CI: extend CI to Python 3.12 --- .github/workflows/ci.yml | 2 +- dev-requirements.txt | 1 + setup.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a83fcff..22425041 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] exclude: # pycifrw 4.4.4 is broken on Windows / python 3.10 - os: windows-latest diff --git a/dev-requirements.txt b/dev-requirements.txt index 2c0355c9..8879afbb 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,3 +1,4 @@ +setuptools; python_version >= '3.12' # The ability to build documentation using `python setup.py build_sphinx` # has been removed as of Sphinx v7. # Until the setup script `setup.py` has been changed to setup.cfg diff --git a/setup.py b/setup.py index e0cc8d04..1c3d7463 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ URL = "http://scikit-ued.readthedocs.io" DOWNLOAD_URL = "http://github.com/LaurentRDC/scikit-ued" AUTHOR = "Laurent P. René de Cotret" -AUTHOR_EMAIL = "laurent.renedecotret@mail.mcgill.ca" +AUTHOR_EMAIL = "laurent.decotret@outlook.com" BASE_PACKAGE = "skued" base_path = Path(__file__).parent