From 8ede2a2f39bb9133030906d84e4ba116b2a9938a Mon Sep 17 00:00:00 2001 From: Talley Lambert Date: Sat, 14 Dec 2024 12:37:26 -0500 Subject: [PATCH] build: support py313 (#264) * build: drop py38 * bump min typing ext * add py313 * only use pyqt6 * fix ubunt --- .github/workflows/test_and_deploy.yml | 7 +++++++ pyproject.toml | 1 + 2 files changed, 8 insertions(+) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 691fb24..58b7dc6 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -41,6 +41,13 @@ jobs: - python-version: "3.12" backend: pyqt5 include: + - python-version: "3.13" + platform: windows-latest + backend: "pyqt6" + - python-version: "3.13" + platform: ubuntu-latest + backend: "pyqt6" + - python-version: "3.10" platform: macos-latest backend: "'pyside6<6.8'" diff --git a/pyproject.toml b/pyproject.toml index 7ec10c3..26a1487 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Desktop Environment", "Topic :: Software Development :: User Interfaces", "Topic :: Software Development :: Widget Sets",