You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by ro...@apache.org on 2020/12/29 13:30:04 UTC

[buildstream] 06/32: Bump required python version to 3.5

This is an automated email from the ASF dual-hosted git repository.

root pushed a commit to branch testing/local-cache-expiry
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 26565f1302fe862b9d56614933c2ce4debfe0863
Author: Tristan Maat <tm...@tlater.net>
AuthorDate: Sat Jun 23 22:01:24 2018 +0000

    Bump required python version to 3.5
---
 .gitlab-ci.yml              | 6 +-----
 doc/source/install_main.rst | 2 +-
 setup.py                    | 4 ++--
 3 files changed, 4 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/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: