diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-02-21 10:04:56 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-21 10:04:56 -0500 |
| commit | 9c60ac6f3169f9df37e6c5166844fb9cf5f6766d (patch) | |
| tree | f96381edfdb6a31585e7ab3e3e05ded9d41731ec /plugins/template/noxfile.py | |
| parent | a7119e1b26a8bae531b118b7cb8c4b195f731df6 (diff) | |
| parent | 811a7302eef99b9f67bfcdde3400322b7557dbab (diff) | |
| download | cmd2-git-9c60ac6f3169f9df37e6c5166844fb9cf5f6766d.tar.gz | |
Merge pull request #1059 from python-cmd2/deprecate_35
Deprecate support for Python 3.5
Diffstat (limited to 'plugins/template/noxfile.py')
| -rw-r--r-- | plugins/template/noxfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/template/noxfile.py b/plugins/template/noxfile.py index 85411106..75eab841 100644 --- a/plugins/template/noxfile.py +++ b/plugins/template/noxfile.py @@ -1,7 +1,7 @@ import nox -@nox.session(python=['3.5', '3.6', '3.7', '3.8', '3.9']) +@nox.session(python=['3.6', '3.7', '3.8', '3.9']) def tests(session): session.install('invoke', './[test]') session.run('invoke', 'pytest', '--junit', '--no-pty') |
