diff options
author | Damian Szuberski <[email protected]> | 2022-01-13 17:51:12 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-01-13 09:51:12 -0700 |
commit | 8a7c4efd3cf47ce4a27b00c176845f1ac1c483c8 (patch) | |
tree | 54891144d7500f1e9656e09b4ba5df0e763e9c8f /.github/workflows/zfs-tests-sanity.yml | |
parent | da9c6c033388c19cf3a2b4c5a9ab4287cb831c9c (diff) |
Removed Python 2 and Python 3.5- support
Deprecation of Python versions below 3.6 gives opportunity to unify the
build and install requirements for OpenZFS packages. The minimal
supported Python version is 3.6 as this is the most recent Python
package CentOS/RHEL 7 users can get.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Rich Ercolani <[email protected]>
Reviewed-by: John Kennedy <[email protected]>
Signed-off-by: szubersk <[email protected]>
Closes #12925
Diffstat (limited to '.github/workflows/zfs-tests-sanity.yml')
-rw-r--r-- | .github/workflows/zfs-tests-sanity.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/zfs-tests-sanity.yml b/.github/workflows/zfs-tests-sanity.yml index 8cba6d78d..2b97fd618 100644 --- a/.github/workflows/zfs-tests-sanity.yml +++ b/.github/workflows/zfs-tests-sanity.yml @@ -21,9 +21,8 @@ jobs: zlib1g-dev uuid-dev libblkid-dev libselinux-dev \ xfslibs-dev libattr1-dev libacl1-dev libudev-dev libdevmapper-dev \ libssl-dev libffi-dev libaio-dev libelf-dev libmount-dev \ - libpam0g-dev pamtester python-dev python-setuptools python-cffi \ - python-packaging python3 python3-dev python3-setuptools python3-cffi \ - python3-packaging libcurl4-openssl-dev + libpam0g-dev pamtester libcurl4-openssl-dev \ + python3 python3-dev python3-setuptools python3-cffi python3-packaging - name: Autogen.sh run: | sh autogen.sh |