mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-24 18:30:38 -05:00
Require Python 3.6+ for running Python-based tests
configure.ac currently requires Python 3.4 for running Python-based system tests. Meanwhile, there are some features in Python 3.6+ that we would like to use for making our Python code cleaner (e.g. f-strings). Update the minimum Python version required for running Python-based system tests to 3.6, noting that: - Python 3.4 has reached end-of-life on March 18th, 2019. - Python 3.5 has reached end-of-life on September 5th, 2020.
This commit is contained in:
parent
7f3b559b04
commit
beaaa7f4e2
1 changed files with 1 additions and 1 deletions
|
|
@ -266,7 +266,7 @@ AM_CONDITIONAL([HAVE_PERLMOD_TIME_HIRES],
|
|||
#
|
||||
# Python is optional, it is used only by some of the system test scripts.
|
||||
#
|
||||
AM_PATH_PYTHON([3.4], [], [:])
|
||||
AM_PATH_PYTHON([3.6], [], [:])
|
||||
AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != ":"])
|
||||
|
||||
AC_PATH_PROGS([PYTEST], [pytest-3 py.test-3 pytest py.test pytest-pypy], [])
|
||||
|
|
|
|||
Loading…
Reference in a new issue