Skip to content

Commit

Permalink
Exclude outdated python version 3.8 from noxfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaraBuettner committed Nov 22, 2023
1 parent 0af37bc commit 4d2bee0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def flake8(session):
session.run("flake8", "--ignore=E722, W605", *cleaned)


@nox.session(python=["3", "3.8", "3.9", "3.10", "3.11"])
@nox.session(python=["3", "3.9", "3.10", "3.11"])
def build(session):
"""Build the package and check for packaging errors."""
setdefaults(session)
Expand All @@ -69,7 +69,7 @@ def build(session):
session.run("twine", "check", "dist/eTraGo*")


@nox.session(python=["3", "3.8", "3.9", "3.10", "3.11"])
@nox.session(python=["3", "3.9", "3.10", "3.11"])
def install(session):
"""Install the package."""
setdefaults(session)
Expand Down

0 comments on commit 4d2bee0

Please sign in to comment.