Skip to content

Commit

Permalink
Drop Python2.7 support in CI
Browse files Browse the repository at this point in the history
Removes Python2.7 from travis.yml in order to drop support for tests for
Python2.7
  • Loading branch information
onlinejudge95 committed Jun 6, 2020
1 parent ac713ed commit 6312b18
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ jobs:
# Basic Checks
- stage: primary
env: NOXSESSION=lint-3.5
- env: NOXSESSION=test-2.7
- env: NOXSESSION=test-3.5
- env: NOXSESSION=docs

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 dev(session):
session.run("python", "manage.py", *session.posargs)


@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8"])
@nox.session(python=["3.5", "3.6", "3.7", "3.8"])
def test(session):
session.install("-r", "requirements.txt")
session.install("-r", "tools/requirements-test.txt")
Expand Down

0 comments on commit 6312b18

Please sign in to comment.