You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ji...@apache.org on 2019/07/30 13:08:30 UTC

[flink] branch release-1.9 updated: [FLINK-13488][Python] Remove python 3.3/3.4 support (#9278)

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

jincheng pushed a commit to branch release-1.9
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.9 by this push:
     new 8751899  [FLINK-13488][Python] Remove python 3.3/3.4 support (#9278)
8751899 is described below

commit 8751899a6e055e8e82203951d3c85a7e5af75f9c
Author: Jincheng Sun <ji...@apache.org>
AuthorDate: Tue Jul 30 15:05:25 2019 +0200

    [FLINK-13488][Python] Remove python 3.3/3.4 support (#9278)
---
 flink-python/dev/lint-python.sh | 2 +-
 flink-python/setup.py           | 2 --
 flink-python/tox.ini            | 2 +-
 3 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/flink-python/dev/lint-python.sh b/flink-python/dev/lint-python.sh
index b4f836b..8aee772 100755
--- a/flink-python/dev/lint-python.sh
+++ b/flink-python/dev/lint-python.sh
@@ -178,7 +178,7 @@ function install_miniconda() {
 
 # Install some kinds of py env.
 function install_py_env() {
-    py_env=("2.7" "3.3" "3.4" "3.5" "3.6" "3.7")
+    py_env=("2.7" "3.5" "3.6" "3.7")
     for ((i=0;i<${#py_env[@]};i++)) do
         if [ -d "$CURRENT_DIR/.conda/envs/${py_env[i]}" ]; then
             rm -rf "$CURRENT_DIR/.conda/envs/${py_env[i]}"
diff --git a/flink-python/setup.py b/flink-python/setup.py
index 2b417f1..4854bfa 100644
--- a/flink-python/setup.py
+++ b/flink-python/setup.py
@@ -192,8 +192,6 @@ run sdist.
             'Development Status :: 1 - Planning',
             'License :: OSI Approved :: Apache Software License',
             'Programming Language :: Python :: 2.7',
-            'Programming Language :: Python :: 3.3',
-            'Programming Language :: Python :: 3.4',
             'Programming Language :: Python :: 3.5',
             'Programming Language :: Python :: 3.6',
             'Programming Language :: Python :: 3.7']
diff --git a/flink-python/tox.ini b/flink-python/tox.ini
index e0a6c29..baa8621 100644
--- a/flink-python/tox.ini
+++ b/flink-python/tox.ini
@@ -21,7 +21,7 @@
 # in multiple virtualenvs. This configuration file will run the
 # test suite on all supported python versions.
 # new environments will be excluded by default unless explicitly added to envlist.
-envlist = py27, py33, py34, py35, py36, py37
+envlist = py27, py35, py36, py37
 
 [testenv]
 whitelist_externals=