Skip to content

Commit

Permalink
Drop Python3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
kngwyu committed Sep 25, 2023
1 parent 7dfb1ad commit 7a7a821
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
- {name: Mac, python: '3.10', os: macos-latest, nox: "tests"}
- {name: Py310, python: '3.10', os: ubuntu-latest, nox: "tests"}
- {name: Py39, python: '3.9', os: ubuntu-latest, nox: "tests"}
- {name: Py38, python: '3.8', os: ubuntu-latest, nox: "tests"}
- {name: Lint, python: '3.11', os: ubuntu-latest, nox: "lint"}
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def format(session: nox.Session) -> None:
session.run("isort", *SOURCES)


@nox.session(reuse_venv=True, python=["3.8", "3.9", "3.10", "3.11"])
@nox.session(reuse_venv=True, python=["3.9", "3.10", "3.11"])
def lint(session: nox.Session) -> None:
_sync(session, "requirements/lint.txt")
session.run("ruff", *SOURCES)
Expand All @@ -72,7 +72,7 @@ def smoke(session: nox.Session) -> None:
session.run("python", DEFAULT, *session.posargs)


@nox.session(reuse_venv=True, python=["3.8", "3.9", "3.10", "3.11"])
@nox.session(reuse_venv=True, python=["3.9", "3.10", "3.11"])
def tests(session: nox.Session) -> None:
_sync(session, "requirements/tests.txt")
session.run("pytest", "tests", *session.posargs)

0 comments on commit 7a7a821

Please sign in to comment.