13 lines
710 B
Diff
13 lines
710 B
Diff
diff --git a/src/tox/constants.py b/src/tox/constants.py
|
|
index bd21562..e1b7c3f 100644
|
|
--- a/src/tox/constants.py
|
|
+++ b/src/tox/constants.py
|
|
@@ -28,7 +28,7 @@ def _construct_default_factors(cpython_versions, pypy_versions, other_interprete
|
|
class PYTHON:
|
|
PY_FACTORS_RE = re.compile("^(?!py$)(py|pypy|jython)([2-9][0-9]?)?$")
|
|
PY_FACTORS_MAP = {"py": "python", "pypy": "pypy", "jython": "jython"}
|
|
- CPYTHON_VERSION_TUPLES = [(2, 7), (3, 4), (3, 5), (3, 6), (3, 7), (3, 8)]
|
|
+ CPYTHON_VERSION_TUPLES = [(2, 7), (3, 4), (3, 5), (3, 6), (3, 7), (3, 8), (3, 9)]
|
|
PYPY_VERSION_TUPLES = [(2, 7), (3, 5)]
|
|
OTHER_PYTHON_INTERPRETERS = ["jython"]
|
|
DEFAULT_FACTORS = _construct_default_factors(
|