Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Visit <https://dev-portal.diamond.ac.uk/create> and you will see a list of templ

## Create a new project from the commandline

You will need to `pip install copier` inside an activated `venv` from python3.10 or later, then you can create a new module via:
You will need to `pip install copier` inside an activated `venv` from python3.11 or later, then you can create a new module via:

```
mkdir /path/to/my-project
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ to create new projects from the template, update existing projects in line with

## Check your version of python

You will need python 3.10 or later. You can check your version of python by
You will need python 3.11 or later. You can check your version of python by
typing into a terminal:

```
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "python-copier-template"
dynamic = ["version"]
requires-python = ">=3.10"
requires-python = ">=3.11"

[project.optional-dependencies]
dev = [
Expand Down
4 changes: 2 additions & 2 deletions template/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ name = "{{ distribution_name }}"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
description = "{{ description }}"
dependencies = [] # Add project dependencies here, e.g. ["click", "numpy"]
dynamic = ["version"]
license.file = "LICENSE"
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.11"

[project.optional-dependencies]
dev = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
include:
# Include one that runs in the dev environment
- runs-on: "ubuntu-latest"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Check your version of python

You will need python 3.10 or later. You can check your version of python by
You will need python 3.11 or later. You can check your version of python by
typing into a terminal:

```
Expand Down
Loading