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

dgrove 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 1c0a872  Update virtualenv for python:3.9 to fix tests. (#161)
1c0a872 is described below

commit 1c0a8722c55092b33b604842d95274527bfa2af9
Author: falkzoll <falkz...@de.ibm.com>
AuthorDate: Wed Aug 14 19:43:34 2024 +0200

    Update virtualenv for python:3.9 to fix tests. (#161)
    
    - The python:3.9 runtime uses an older version of the virtualenv module 
which now causes 'setup.py install is deprecated' messages issued when the 
action loop loads the function into memory. This causes the action loop to 
assume the load failed. This causes the tests to fail. Updating the virtualenv 
module to version 20.26.3 which is not using 'setup.py' install anymore solves 
this issue.
---
 core/requirements_common.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/core/requirements_common.txt b/core/requirements_common.txt
index 6495338..57c8dd7 100644
--- a/core/requirements_common.txt
+++ b/core/requirements_common.txt
@@ -7,6 +7,6 @@ python-dateutil==2.8.2
 requests==2.26.0
 scrapy==2.5.0
 simplejson==3.17.5
-virtualenv==20.8.0
+virtualenv==20.26.3
 twisted==21.7.0
-netifaces==0.11.0
\ No newline at end of file
+netifaces==0.11.0

Reply via email to