From 85866883240f97a9bd68c55207f7f9684c1c9985 Mon Sep 17 00:00:00 2001 From: Johannes Kasimir Date: Tue, 17 Oct 2023 13:31:22 +0200 Subject: [PATCH] deps: min python3.10 --- .copier-answers.yml | 2 +- docs/developer/getting-started.md | 4 ++-- tox.ini | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.copier-answers.yml b/.copier-answers.yml index d69633c..09abe54 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -4,7 +4,7 @@ _src_path: gh:scipp/copier_template description: Reflectometry data reduction for the European Spallation Source github_linux_image: ubuntu-20.04 max_python: '3.11' -min_python: '3.8' +min_python: '3.10' orgname: scipp projectname: essreflectometry year: 2023 diff --git a/docs/developer/getting-started.md b/docs/developer/getting-started.md index 14902df..70b797c 100644 --- a/docs/developer/getting-started.md +++ b/docs/developer/getting-started.md @@ -40,7 +40,7 @@ Alternatively, if you want a different workflow, take a look at ``tox.ini`` or ` Run the tests using ```sh -tox -e py38 +tox -e py310 ``` (or just `tox` if you want to run all environments). @@ -88,4 +88,4 @@ python -m sphinx -v -b doctest -d build/.doctrees docs build/html python -m sphinx -v -b linkcheck -d build/.doctrees docs build/html ``` ```` -````` \ No newline at end of file +````` diff --git a/tox.ini b/tox.ini index 1c39d14..0573b76 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38 +envlist = py310 isolated_build = true [testenv]