Skip to content

Commit 3e7e203

Browse files
authored
Merge pull request #631 from NLeSC/615_pyproject_python_version
2 parents 07e120e + 6cad137 commit 3e7e203

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

template/pyproject.toml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ keywords = [
3838
license = {file = "LICENSE"}
3939
name = "{{ package_name }}"
4040
readme = {file = "README.md", content-type = "text/markdown"}
41-
requires-python = ">=3.8"
41+
requires-python = ">=3.10"
4242
version = "{{ version }}"
4343

4444
[project.optional-dependencies]
@@ -106,7 +106,7 @@ command_line = "-m pytest"
106106
[tool.tox]
107107
legacy_tox_ini = """
108108
[tox]
109-
envlist = py38,py39,py310,py311,py312
109+
envlist = py310,py311,py312
110110
skip_missing_interpreters = true
111111
{% if AddLocalTests -%}
112112
[testenv]

template/{% if HasWorkflows %}.github{% endif %}/workflows/{% if AddGitHubActionBuild %}build.yml{% endif %}.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
fail-fast: false
4747
steps:
4848
- uses: actions/checkout@v5
49-
- name: Set up Python 3.9
49+
- name: Set up Python 3.12
5050
uses: actions/setup-python@v6
5151
with:
52-
python-version: 3.9
52+
python-version: 3.12
5353
- name: Python info
5454
shell: bash -e {0}
5555
run: |

template/{% if HasWorkflows %}.github{% endif %}/workflows/{% if AddGitHubActionDocumentation %}documentation.yml{% endif %}

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
fail-fast: false
1717
steps:
1818
- uses: actions/checkout@v5
19-
- name: Set up Python 3.9
19+
- name: Set up Python 3.12
2020
uses: actions/setup-python@v6
2121
with:
22-
python-version: 3.9
22+
python-version: 3.12
2323
- name: Python info
2424
shell: bash -e {0}
2525
run: |
@@ -30,7 +30,7 @@ jobs:
3030
python -m pip install --upgrade pip setuptools
3131
python -m pip install .[dev,publishing]
3232
- name: Install pandoc using apt
33-
run: sudo apt install pandoc
33+
run: sudo apt install pandoc
3434
- name: Build documentation
3535
run: make coverage doctest html
3636
working-directory: docs

template/{% if HasWorkflows %}.github{% endif %}/workflows/{% if AddSonarCloud %}sonarcloud.yml{% endif %}

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Set up Python
2222
uses: actions/setup-python@v6
2323
with:
24-
python-version: 3.9
24+
python-version: 3.12
2525
- name: Python info
2626
shell: bash -e {0}
2727
run: |

0 commit comments

Comments
 (0)