From 1f65d8d4db40c70f473901d7eb4765529a73a876 Mon Sep 17 00:00:00 2001 From: Jonathan Hogg Date: Mon, 18 Nov 2024 18:13:48 +0000 Subject: [PATCH] All dependent packages now OK for Python 3.13 Manifold doesn't have wheels yet, but build from source is no longer broken so I'm not going to wait. --- .github/workflows/ci-test.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index a8a3cc89..ae171248 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12", "3.13"] os: [ubuntu-latest, windows-latest, macos-13, macos-14] include: - os: macos-13 diff --git a/pyproject.toml b/pyproject.toml index f1c78a84..816ad982 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Environment :: Console", "Environment :: GPU", "Environment :: MacOS X",