Skip to content

Commit

Permalink
Exclude older Python versions from nox
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonakemon committed Jul 20, 2023
1 parent 12c0be7 commit b7a3ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def lint(session):
session.run('flake8', '--import-order-style=google', 'flask_talisman')


@nox.session(python=['3.4', '3.5', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11'])
@nox.session(python=['3.7', '3.8', '3.9', '3.10', '3.11'])
def tests(session):
"""Run the test suite"""
session.install('flask', 'mock', 'pytest', 'pytest-cov')
Expand Down

0 comments on commit b7a3ed1

Please sign in to comment.