From 7453374982f0a2b2653c122296b50c3b460fb558 Mon Sep 17 00:00:00 2001 From: Raf Guns Date: Fri, 29 Nov 2024 12:13:23 +0100 Subject: [PATCH] Support Python 3.12 --- .github/workflows/tox.yml | 2 +- README.rst | 2 +- pyproject.toml | 1 + tox.ini | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 92d4cf0..2d72d0d 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 5 matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 diff --git a/README.rst b/README.rst index 6a4934f..5fd89d5 100644 --- a/README.rst +++ b/README.rst @@ -17,7 +17,7 @@ While some predictors are fairly straightforward (e.g., if two people have a lar Installation ------------ -**linkpred** (v0.6 and later) works under Python 3.8 to 3.11. +**linkpred** (v0.6 and later) works under Python 3.8 to 3.12. It depends on: - matplotlib diff --git a/pyproject.toml b/pyproject.toml index f80ac94..241e9ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Software Development", "Topic :: Scientific/Engineering", "Development Status :: 4 - Beta", diff --git a/tox.ini b/tox.ini index e1b9df6..47b3305 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py36,py37,py38,py39,py310 +envlist = py38,py39,py310,py311,py312 [testenv] deps =