This is an automated email from the ASF dual-hosted git repository. not-in-ldap pushed a commit to branch 135-expire-artifacts-in-local-cache-clean in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 1cffee6cbc521811a1e496927656e02f24f99cdb Author: Tristan Maat <[email protected]> AuthorDate: Mon Jul 16 14:20:05 2018 +0100 Bump required python version to 3.5 --- .gitlab-ci.yml | 6 +----- NEWS | 1 + doc/source/install_main.rst | 2 +- setup.py | 4 ++-- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3c65546..d19a9d6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: buildstream/testsuite-debian:8-master-57-be5a863 +image: buildstream/buildstream-debian:master-81-caa5241 cache: key: "$CI_JOB_NAME-" @@ -88,9 +88,6 @@ source_dist: paths: - coverage-linux/ -tests-debian-8: - <<: *linux-tests - tests-debian-9: image: buildstream/buildstream-debian:master-81-caa5241 <<: *linux-tests @@ -223,7 +220,6 @@ coverage: - coverage combine --rcfile=../.coveragerc -a coverage.* - coverage report --rcfile=../.coveragerc -m dependencies: - - tests-debian-8 - tests-debian-9 - tests-fedora-27 - tests-unix diff --git a/NEWS b/NEWS index 0025e3d..2d0c634 100644 --- a/NEWS +++ b/NEWS @@ -14,6 +14,7 @@ buildstream 1.1.4 buildstream 1.1.3 ================= + o BuildStream now requires python version >= 3.5 o Added new `bst init` command to initialize a new project. o Cross junction tracking is now disabled by default for projects diff --git a/doc/source/install_main.rst b/doc/source/install_main.rst index abe85ee..1f542f2 100644 --- a/doc/source/install_main.rst +++ b/doc/source/install_main.rst @@ -6,7 +6,7 @@ Installing BuildStream ====================== BuildStream requires the following base system requirements: -* python3 >= 3.4 +* python3 >= 3.5 * libostree >= v2017.8 with introspection data * bubblewrap >= 0.1.2 * fuse2 diff --git a/setup.py b/setup.py index 1f9ff00..46a86e2 100755 --- a/setup.py +++ b/setup.py @@ -24,8 +24,8 @@ import subprocess import sys import versioneer -if sys.version_info[0] != 3 or sys.version_info[1] < 4: - print("BuildStream requires Python >= 3.4") +if sys.version_info[0] != 3 or sys.version_info[1] < 5: + print("BuildStream requires Python >= 3.5") sys.exit(1) try:
