From e7705d928ea088644b3c5f7a4df79e1e3db8b057 Mon Sep 17 00:00:00 2001 From: Daiane Iglesia Dolci <63597005+Ig-dolci@users.noreply.github.com> Date: Wed, 21 Feb 2024 12:09:09 +0000 Subject: [PATCH] Change the python version requirement. (#59) * Change the python version requirement and version. --- .github/workflows/build.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6c1460a..0cf5ec7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index 9bfe364..f2b794b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" [project] name = "checkpoint_schedules" -version = "1.0.0" +version = "1.0.2" authors = [ { name="Daiane I. Dolci ", email="d.dolci@eimperial.ic.ac.uk" }, { name="James R. Maddison", email="j.r.maddison@ed.ac.uk" }, @@ -16,7 +16,7 @@ authors = [ description = "Schedules for incremental checkpointing of adjoint simulations." readme = "README.md" license = {text = "LGPL-3.0"} -requires-python = ">=3.9" +requires-python = ">=3.8" classifiers = [ "Programming Language :: Python :: 3", ]