You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by ji...@apache.org on 2022/05/27 00:24:24 UTC

[openwhisk] branch master updated: Fix missing keystroke in requirements (#5247)

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

jiangpengcheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new f71c41c04 Fix missing keystroke in requirements (#5247)
f71c41c04 is described below

commit f71c41c04e240fdfb47e9534f367ad6c7b2c434c
Author: Evgeniy <gi...@printerror.xyz>
AuthorDate: Fri May 27 03:24:19 2022 +0300

    Fix missing keystroke in requirements (#5247)
    
    ERROR: Invalid requirement: 'six=1.16.0'
    Hint: = is not a valid operator. Did you mean == ?
---
 tools/macos/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/macos/README.md b/tools/macos/README.md
index e669a5389..8ff60fb26 100644
--- a/tools/macos/README.md
+++ b/tools/macos/README.md
@@ -55,7 +55,7 @@ brew install gnu-tar
 # install pip
 sudo easy_install pip
 # install script prerequisites
-pip install docker==5.0.0 ansible==4.1.0 jinja2==3.0.1 couchdb==1.2 httplib2==0.19.1 requests==2.25.1 six=1.16.0
+pip install docker==5.0.0 ansible==4.1.0 jinja2==3.0.1 couchdb==1.2 httplib2==0.19.1 requests==2.25.1 six==1.16.0
 ```
 
 Make sure you correctly configure the environment variable $JAVA_HOME.
@@ -114,4 +114,4 @@ To run the unit tests execute the command bellow from the project's root folder:
 # go back to project's root folder
 cd ../
 ./gradlew -PtestSetName="REQUIRE_ONLY_DB" :tests:testCoverageLean 
-```
\ No newline at end of file
+```