From 7cc250635f385e8e0672ca40126652cbb2b058ed Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 9 Nov 2025 05:15:50 +0000 Subject: [PATCH] Update from copier (2025-11-09T05:15:50) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 4 ++-- .github/workflows/build.yaml | 4 ++-- docs/wiki/Installation.md | 2 +- pyproject.toml | 5 ++--- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 23addb9..bcb16a8 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 68f3543 +_commit: 973c39c _src_path: https://github.com/python-project-templates/base.git add_docs: true add_extension: rustjswasm @@ -8,5 +8,5 @@ email: 3105306+timkpaine@users.noreply.github.com github: python-project-templates project_description: A Rust-Python project template project_name: python template rust -python_version_primary: '3.9' +python_version_primary: '3.11' team: Python Project Template Authors diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 8ff9b65..bf7123b 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -30,8 +30,8 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.9"] - cibuildwheel: ["cp39"] + python-version: ["3.11"] + cibuildwheel: ["cp311"] node-version: [20.x] steps: diff --git a/docs/wiki/Installation.md b/docs/wiki/Installation.md index e0f2ada..b517163 100644 --- a/docs/wiki/Installation.md +++ b/docs/wiki/Installation.md @@ -1,6 +1,6 @@ ## Pre-requisites -You need Python >=3.9 on your machine to install `python-template-rust`. +You need Python >=3.10 on your machine to install `python-template-rust`. ## Install with `pip` diff --git a/pyproject.toml b/pyproject.toml index e56e992..5ba12b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ description = "A Rust-Python project template" readme = "README.md" license = { text = "Apache-2.0" } version = "0.1.0" -requires-python = ">=3.9" +requires-python = ">=3.10" keywords = [] classifiers = [ @@ -19,7 +19,6 @@ classifiers = [ "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", @@ -107,7 +106,7 @@ ignore = [ ] [tool.cibuildwheel] -build = "cp39-*" +build = "cp310-*" test-command = "pytest -vvv {project}/python_template_rust/tests" test-requires = ["pytest", "pytest-cov", "pytest-sugar", "pytest-xdist"]