From 2283af6d36998e4f75132912cfc70d89e5938aac Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 30 May 2023 06:25:10 -0400 Subject: [PATCH] ci: add 3.12 beta testing (#650) Signed-off-by: Henry Schreiner --- .github/workflows/ci.yml | 2 +- noxfile.py | 2 +- pyproject.toml | 9 +++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e6abcd97..b22da508b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.6", "3.8", "3.11"] + python-version: ["3.6", "3.8", "3.11", "3.12-dev"] os: [ubuntu-latest, windows-latest, macos-latest] include: - python-version: 'pypy-3.8' diff --git a/noxfile.py b/noxfile.py index 71cb453d1..9c3928374 100644 --- a/noxfile.py +++ b/noxfile.py @@ -2,7 +2,7 @@ import nox -ALL_PYTHONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] +ALL_PYTHONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] nox.options.sessions = ["lint", "tests"] diff --git a/pyproject.toml b/pyproject.toml index 85c172610..aeaa09855 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,6 +30,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 :: Build Tools", "Topic :: System :: Systems Administration", ] @@ -47,6 +48,14 @@ keywords = [ "cli", ] +[project.urls] +Homepage = "https://github.com/tomerfiliba/plumbum" +Documentation = "https://plumbum.readthedocs.io/" +"Bug Tracker" = "https://github.com/tomerfiliba/plumbum/issues" +Changelog = "https://plumbum.readthedocs.io/en/latest/changelog.html" +Cheatsheet = "https://plumbum.readthedocs.io/en/latest/quickref.html" + + [project.optional-dependencies] dev = [ "paramiko",