You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ni...@apache.org on 2022/08/09 07:37:39 UTC

[openwhisk-runtime-python] branch master updated: Fix setup.py install is deprecated in python3.10 (#133)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new d239ef5  Fix setup.py install is deprecated in python3.10 (#133)
d239ef5 is described below

commit d239ef513bef75d0a3c676e79265b3ae4c642eb2
Author: ningyougang <41...@qq.com>
AuthorDate: Tue Aug 9 15:37:34 2022 +0800

    Fix setup.py install is deprecated in python3.10 (#133)
---
 core/python310Action/requirements.txt | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/core/python310Action/requirements.txt b/core/python310Action/requirements.txt
index 569a25f..93d5a7a 100644
--- a/core/python310Action/requirements.txt
+++ b/core/python310Action/requirements.txt
@@ -1,2 +1,5 @@
 # default packages available for action-python-v3.10
 -r requirements_common.txt
+
+# fix issue: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools
+setuptools == 58.2.0