From b2bcf7bd85814b08affbd5964fed26f43d0b03eb Mon Sep 17 00:00:00 2001 From: Olivier Morelle Date: Wed, 15 Nov 2023 13:43:43 +0100 Subject: [PATCH] build(eyepy): removes python 3.8 from testing matrix --- .github/workflows/_quality.yaml | 2 +- noxfile.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_quality.yaml b/.github/workflows/_quality.yaml index 613b7f4..acff918 100644 --- a/.github/workflows/_quality.yaml +++ b/.github/workflows/_quality.yaml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: true matrix: - python-version: ["3.8" , "3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 diff --git a/noxfile.py b/noxfile.py index d04e175..1de849a 100644 --- a/noxfile.py +++ b/noxfile.py @@ -1,7 +1,7 @@ import nox # type: ignore - nox is not a project dependency. This module is used by the global nox command, not this project -@nox.session(python=['3.8', '3.9', '3.10', '3.11']) +@nox.session(python=['3.9', '3.10', '3.11']) def tests(session): # Install the project dependencies session.install('poetry')