Skip to content

Commit

Permalink
Removes Python 3.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
flozz committed Apr 1, 2021
1 parent 5c987a7 commit ce03f36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def lint(session):
session.run("black", "--check", *PYTHON_FILES)


@nox.session(python=["3.6", "3.7", "3.8", "3.9"], reuse_venv=True)
@nox.session(python=["3.7", "3.8", "3.9"], reuse_venv=True)
def test(session):
session.run(
"python", "-m", "doctest", "./nautilus_terminal/color_helpers.py"
Expand Down

0 comments on commit ce03f36

Please sign in to comment.