Skip to content

Commit

Permalink
build(eyepy): removes python 3.8 from testing matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Oli4 committed Nov 15, 2023
1 parent e66fd8b commit b2bcf7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
@@ -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')
Expand Down

0 comments on commit b2bcf7b

Please sign in to comment.