From 593fa8e76ca664c1e05588d7011df200b6cfa65c Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 13 Jan 2025 01:18:47 +0300 Subject: [PATCH] Add Python 3.13 --- project_template/.github/workflows/test-publish.yaml | 2 +- project_template/setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/project_template/.github/workflows/test-publish.yaml b/project_template/.github/workflows/test-publish.yaml index b42167a..72ebac9 100644 --- a/project_template/.github/workflows/test-publish.yaml +++ b/project_template/.github/workflows/test-publish.yaml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "=3.9[build=*_pypy]"] + python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "=3.9[build=*_pypy]"] exclude: - os: windows-latest python-version: "2.7" diff --git a/project_template/setup.py b/project_template/setup.py index 332acf7..7066def 100755 --- a/project_template/setup.py +++ b/project_template/setup.py @@ -66,6 +66,7 @@ setup( 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', ], packages=['{project}'], package_data={'{project}': []}, -- 2.39.5