You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by lf...@apache.org on 2020/10/06 09:46:30 UTC

[incubator-datalab] branch DATALAB-2076 created (now e7cf0e9)

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

lfrolov pushed a change to branch DATALAB-2076
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git.


      at e7cf0e9  [DATALAB-2076]: fixed typo where specified bcrypt version as it tries to install bcrypt 3.2.0 that requires python 3

This branch includes the following new commits:

     new e7cf0e9  [DATALAB-2076]: fixed typo where specified bcrypt version as it tries to install bcrypt 3.2.0 that requires python 3

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org


[incubator-datalab] 01/01: [DATALAB-2076]: fixed typo where specified bcrypt version as it tries to install bcrypt 3.2.0 that requires python 3

Posted by lf...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lfrolov pushed a commit to branch DATALAB-2076
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git

commit e7cf0e988678a248fe1acf8d46511884e50d54bd
Author: leonidfrolov <fr...@gmail.com>
AuthorDate: Tue Oct 6 12:46:17 2020 +0300

    [DATALAB-2076]: fixed typo where specified bcrypt version as it tries to install bcrypt 3.2.0 that requires python 3
---
 infrastructure-provisioning/src/general/scripts/aws/ssn_configure.py   | 2 +-
 infrastructure-provisioning/src/general/scripts/azure/ssn_configure.py | 2 +-
 infrastructure-provisioning/src/general/scripts/gcp/ssn_configure.py   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/infrastructure-provisioning/src/general/scripts/aws/ssn_configure.py b/infrastructure-provisioning/src/general/scripts/aws/ssn_configure.py
index b340019..64e41a4 100644
--- a/infrastructure-provisioning/src/general/scripts/aws/ssn_configure.py
+++ b/infrastructure-provisioning/src/general/scripts/aws/ssn_configure.py
@@ -198,7 +198,7 @@ if __name__ == "__main__":
     try:
         logging.info('[INSTALLING PREREQUISITES TO SSN INSTANCE]')
         print('[INSTALLING PREREQUISITES TO SSN INSTANCE]')
-        params = "--hostname {} --keyfile {} --pip_packages 'boto3 bcrypt=3.1.7 backoff argparse fabric==1.14.0 awscli pymongo " \
+        params = "--hostname {} --keyfile {} --pip_packages 'boto3 bcrypt==3.1.7 backoff argparse fabric==1.14.0 awscli pymongo " \
                  "pyyaml jinja2' --user {} --region {}". \
             format(ssn_conf['instance_hostname'], os.environ['conf_key_dir'] + os.environ['conf_key_name'] + ".pem",
                    ssn_conf['datalab_ssh_user'], os.environ['aws_region'])
diff --git a/infrastructure-provisioning/src/general/scripts/azure/ssn_configure.py b/infrastructure-provisioning/src/general/scripts/azure/ssn_configure.py
index 5da703b..5142136 100644
--- a/infrastructure-provisioning/src/general/scripts/azure/ssn_configure.py
+++ b/infrastructure-provisioning/src/general/scripts/azure/ssn_configure.py
@@ -148,7 +148,7 @@ if __name__ == "__main__":
     try:
         logging.info('[INSTALLING PREREQUISITES TO SSN INSTANCE]')
         print('[INSTALLING PREREQUISITES TO SSN INSTANCE]')
-        params = "--hostname {} --keyfile {} --pip_packages 'backoff bcrypt=3.1.7 argparse fabric==1.14.0 pymongo pyyaml " \
+        params = "--hostname {} --keyfile {} --pip_packages 'backoff bcrypt==3.1.7 argparse fabric==1.14.0 pymongo pyyaml " \
                  "pycrypto azure==2.0.0' --user {} --region {}".format(ssn_conf['instance_host'],
                                                                        ssn_conf['ssh_key_path'],
                                                                        ssn_conf['datalab_ssh_user'],
diff --git a/infrastructure-provisioning/src/general/scripts/gcp/ssn_configure.py b/infrastructure-provisioning/src/general/scripts/gcp/ssn_configure.py
index b7ba633..5010476 100644
--- a/infrastructure-provisioning/src/general/scripts/gcp/ssn_configure.py
+++ b/infrastructure-provisioning/src/general/scripts/gcp/ssn_configure.py
@@ -157,7 +157,7 @@ if __name__ == "__main__":
         logging.info('[INSTALLING PREREQUISITES TO SSN INSTANCE]')
         print('[INSTALLING PREREQUISITES TO SSN INSTANCE]')
         params = "--hostname {} --keyfile {} --pip_packages " \
-                 "'boto3 bcrypt=3.1.7 backoff argparse fabric==1.14.0 awscli pymongo pyyaml " \
+                 "'boto3 bcrypt==3.1.7 backoff argparse fabric==1.14.0 awscli pymongo pyyaml " \
                  "google-api-python-client google-cloud-storage pycrypto' --user {} --region {}". \
             format(ssn_conf['instance_hostname'], ssn_conf['ssh_key_path'],
                    ssn_conf['datalab_ssh_user'], ssn_conf['region'])


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org