commit | 1aad54af6b1d5da73d7471cdbfaf0d0b37c5fde6 | [log] [tgz] |
---|---|---|
author | Tres Seaver <tseaver@palladion.com> | Wed Jul 22 20:17:28 2020 -0400 |
committer | GitHub <noreply@github.com> | Thu Jul 23 00:17:28 2020 +0000 |
tree | 48bbd46ca2ca436fa8fe0621abf5d169024f5965 | |
parent | 6dd2597bd63be6719a0b088de21ef7e48d9d1884 [diff] [blame] |
feat(packaging): add support for Python 3.8 (#569) Release-As: 1.20.0 Closes #568
diff --git a/noxfile.py b/noxfile.py index bcea1fb..c39f27c 100644 --- a/noxfile.py +++ b/noxfile.py
@@ -64,7 +64,7 @@ session.run("black", *BLACK_PATHS) -@nox.session(python=["2.7", "3.5", "3.6", "3.7"]) +@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8"]) def unit(session): session.install(*TEST_DEPENDENCIES) session.install(".")