You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/09/19 11:47:49 UTC

[skywalking-python] branch master updated: Remove places that mentions Python 3.5 support due to EOL (#166)

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

kezhenxu94 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-python.git


The following commit(s) were added to refs/heads/master by this push:
     new cd8dde6  Remove places that mentions Python 3.5 support due to EOL (#166)
cd8dde6 is described below

commit cd8dde6e24a4c9a36029950dfa75d2be2c3843d8
Author: Superskyyy <Su...@outlook.com>
AuthorDate: Sun Sep 19 07:47:43 2021 -0400

    Remove places that mentions Python 3.5 support due to EOL (#166)
---
 README.md                     | 2 +-
 docker/Makefile               | 3 +--
 docs/en/setup/Container.md    | 2 +-
 docs/en/setup/Installation.md | 2 +-
 docs/en/setup/Plugins.md      | 4 ++--
 setup.py                      | 1 -
 6 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index b310a06..1410e2a 100755
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ microservices, cloud native and container-based (Docker, Kubernetes, Mesos) arch
 
 ## Installation Requirements
 
-SkyWalking Python Agent requires SkyWalking 8.0+ and Python 3.5+.
+SkyWalking Python Agent requires SkyWalking 8.0+ and Python 3.6+.
 
 > If you would like to try out the latest features that are not released yet, please refer to this [guide](docs/en/setup/faq/How-to-build-from-sources.md) to build from sources.
 
diff --git a/docker/Makefile b/docker/Makefile
index ac0a059..7967b93 100644
--- a/docker/Makefile
+++ b/docker/Makefile
@@ -18,9 +18,8 @@ D := docker
 
 P := grpc http kafka
 
-TARGETS := py3.5 py3.6 py3.7 py3.8 py3.9
+TARGETS := py3.6 py3.7 py3.8 py3.9
 
-py3.5: BASE_IMAGE = python:3.5
 py3.6: BASE_IMAGE = python:3.6
 py3.7: BASE_IMAGE = python:3.7
 py3.8: BASE_IMAGE = python:3.8
diff --git a/docs/en/setup/Container.md b/docs/en/setup/Container.md
index 1296568..b776db9 100644
--- a/docs/en/setup/Container.md
+++ b/docs/en/setup/Container.md
@@ -4,7 +4,7 @@
 source**
 
 This image hosts the SkyWalking Python agent package on top of official Python base images providing support from 
-Python 3.5 - 3.9.
+Python 3.6 - 3.9.
 
 ## How to use this image
 
diff --git a/docs/en/setup/Installation.md b/docs/en/setup/Installation.md
index 43ca079..7f56c80 100644
--- a/docs/en/setup/Installation.md
+++ b/docs/en/setup/Installation.md
@@ -1,6 +1,6 @@
 ## Installation
 
-**SkyWalking Python agent requires SkyWalking 8.0+ and Python 3.5+**
+**SkyWalking Python agent requires SkyWalking 8.0+ and Python 3.6+**
 
 You can install the SkyWalking Python agent via various ways.
 
diff --git a/docs/en/setup/Plugins.md b/docs/en/setup/Plugins.md
index 5ac58a2..9ca850f 100644
--- a/docs/en/setup/Plugins.md
+++ b/docs/en/setup/Plugins.md
@@ -2,8 +2,8 @@
 
 Library | Versions | Plugin Name
 | :--- | :--- | :--- |
-| [http.server](https://docs.python.org/3/library/http.server.html) | Python 3.5 ~ 3.9 | `sw_http_server` |
-| [urllib.request](https://docs.python.org/3/library/urllib.request.html) | Python 3.5 ~ 3.9 | `sw_urllib_request` |
+| [http.server](https://docs.python.org/3/library/http.server.html) | Python 3.6 ~ 3.9 | `sw_http_server` |
+| [urllib.request](https://docs.python.org/3/library/urllib.request.html) | Python 3.6 ~ 3.9 | `sw_urllib_request` |
 | [requests](https://requests.readthedocs.io/en/master/) | >= 2.9.0 < 2.15.0, >= 2.17.0 <= 2.24.0 | `sw_requests` |
 | [Flask](https://flask.palletsprojects.com/en/1.1.x/) | >=1.0.4 <= 1.1.2 | `sw_flask` |
 | [PyMySQL](https://pymysql.readthedocs.io/en/latest/) | 0.10.0 | `sw_pymysql` |
diff --git a/setup.py b/setup.py
index 6922879..fb1001a 100644
--- a/setup.py
+++ b/setup.py
@@ -63,7 +63,6 @@ setup(
 
         "Programming Language :: Python",
         "Programming Language :: Python :: 3",
-        "Programming Language :: Python :: 3.5",
         "Programming Language :: Python :: 3.6",
         "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: 3.8",