[airavata-django-portal] branch develop updated: AIRAVATA-3529 Keeping dependencies upgrade

2022-12-09 Thread machristie
This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/develop by this push:
 new c2c336fb AIRAVATA-3529 Keeping dependencies upgrade
c2c336fb is described below

commit c2c336fb9140359c22ed3ce4b16ae3444a898b3d
Author: Marcus Christie 
AuthorDate: Fri Dec 9 17:38:12 2022 -0500

AIRAVATA-3529 Keeping dependencies upgrade
---
 requirements.txt | 8 +---
 tox.ini  | 2 +-
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/requirements.txt b/requirements.txt
index 1ec1b8cc..5f9f57a8 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -19,10 +19,12 @@ papermill==1.0.1
 
 # gRPC libs
 google-api-python-client==1.12.8
-grpcio-tools==1.34.1
-grpcio==1.34.1
+grpcio-tools==1.48.2 ; python_version < "3.7"
+grpcio-tools==1.51.1 ; python_version >= "3.7"
+grpcio==1.48.2 ; python_version < "3.7"
+grpcio==1.51.1 ; python_version >= "3.7"
 
-airavata-django-portal-sdk==1.7.0
+airavata-django-portal-sdk==1.8.0
 airavata-python-sdk==1.0.2
 airavata-django-portal-commons==1.0.0
 
diff --git a/tox.ini b/tox.ini
index 90399c76..53a045d2 100644
--- a/tox.ini
+++ b/tox.ini
@@ -8,7 +8,7 @@ envlist = py36, py37, py38, py39, py310 #, py311
 
 [testenv]
 deps =
-py{3,36,37,38,39}: -rrequirements-dev.txt
+py{3,36,37,38,39,310,311}: -rrequirements-dev.txt
 
 commands =
 ./runtests.py



[airavata-django-portal] branch develop updated: Revert "AIRAVATA-3529 Add support for Python 3.10"

2022-12-09 Thread machristie
This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


The following commit(s) were added to refs/heads/develop by this push:
 new ca4e1f35 Revert "AIRAVATA-3529 Add support for Python 3.10"
ca4e1f35 is described below

commit ca4e1f358b2e5936e15de7326b366fbc7fb63bd9
Author: Marcus Christie 
AuthorDate: Fri Dec 9 17:25:08 2022 -0500

Revert "AIRAVATA-3529 Add support for Python 3.10"

This reverts commit 073d14fcfa668faa68a1b4da9552d3f125a2d3e7.
---
 Dockerfile  |  2 +-
 README.md   |  4 ++--
 docs/tutorial/custom_ui_tutorial.md | 24 
 requirements.txt|  8 +++-
 tox.ini |  2 +-
 5 files changed, 19 insertions(+), 21 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 38089d83..eee57597 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -62,7 +62,7 @@ RUN yarn run build
 
 
 
-FROM python:3.10-slim as server-stage
+FROM python:3.9-slim as server-stage
 
 ENV PYTHONUNBUFFERED 1
 
diff --git a/README.md b/README.md
index 3f04f010..5f776a26 100644
--- a/README.md
+++ b/README.md
@@ -16,8 +16,8 @@ Django Portal locally. This will allow you to try it out and 
can also be used as
 a development environment. If you just want to run the Airavata Django Portal
 locally, see the Docker instructions below for a more simplified approach.
 
-The Airavata Django Portal works with Python versions 3.6 - 3.10. You'll need
-one of these versions installed locally.
+The Airavata Django Portal works with Python versions 3.6, 3.7, 3.8 and 3.9.
+You'll need one of these versions installed locally.
 
 You'll also need Node.js and yarn to build the JavaScript frontend code. Please
 install
diff --git a/docs/tutorial/custom_ui_tutorial.md 
b/docs/tutorial/custom_ui_tutorial.md
index cac51519..df883229 100644
--- a/docs/tutorial/custom_ui_tutorial.md
+++ b/docs/tutorial/custom_ui_tutorial.md
@@ -10,7 +10,7 @@ Tutorial attendees should have:
 -   a text editor or IDE for writing Python and web code. Any text editor or 
IDE
 will do but if you're looking for recommendations, I recommend
 [Visual Studio Code](https://code.visualstudio.com/).
--   Python (3.6 - 3.10, but latest version is recommended)
+-   latest Python (current version as of this writing is 3.9.5)
 -   Git client
 -   [Docker Desktop](https://www.docker.com/products/docker-desktop)
 -   If you don't have Docker installed or can't install it, you'll also need:
@@ -20,27 +20,27 @@ Tutorial attendees should have:
 
 ### Installing Python
 
-Python 3.6-3.10 are supported. If you don't have Python installed, I recommend
-you download and use the latest (Python 3.10 as of this writing).
+Python 3.6-3.9 are supported, but I highly recommend you download and use
+**Python 3.9**
 
-Download and install Python.
+Download and install Python 3.9.
 
 -   (macOS/Windows): Download from 
--   (Linux): use your distribution's package manager to install Python
+-   (Linux): use your distribution's package manager to install Python 3.9
 
-Verify you have installed Python:
+Verify you have installed Python 3.9:
 
 === "macOS/Linux"
 
-$ python3 --version
-Python 3.10.0
+$ python3.9 --version
+Python 3.9.5
 
 === "Windows"
 
 Open PowerShell then run:
 
 PS C:\Users\username> py --version
-Python 3.10.0
+Python 3.9.5
 
 ### Installing Git
 
@@ -534,7 +534,7 @@ can install in which we can write the custom output view 
code.
 === "macOS/Linux"
 
 $ cd $HOME
-$ python3 -m venv tutorial-env
+$ python3.9 -m venv tutorial-env
 $ source tutorial-env/bin/activate
 (tutorial-env) $
 
@@ -615,7 +615,7 @@ the settings_local.py file for local development. Move or 
copy it to the
 
 Verify that you have the following installed
 
--   Python 3
+-   Python 3.9
 -   Node LTS
 -   Yarn
 -   Git
@@ -661,7 +661,7 @@ the settings_local.py file for local development. Move or 
copy it to the
 
 Verify that you have the following installed
 
--   Python 3
+-   Python 3.9
 -   Node LTS
 -   Yarn
 -   Git
diff --git a/requirements.txt b/requirements.txt
index 5f9f57a8..1ec1b8cc 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -19,12 +19,10 @@ papermill==1.0.1
 
 # gRPC libs
 google-api-python-client==1.12.8
-grpcio-tools==1.48.2 ; python_version < "3.7"
-grpcio-tools==1.51.1 ; python_version >= "3.7"
-grpcio==1.48.2 ; python_version < "3.7"
-grpcio==1.51.1 ; python_version >= "3.7"
+grpcio-tools==1.34.1
+grpcio==1.34.1
 
-airavata-django-portal-sdk==1.8.0
+airavata-django-portal-sdk==1.7.0
 airavata-python-sdk==1.0.2
 airavata-django-portal-commons==1.0.0
 
diff --git a/tox.ini b/tox.ini
index 53a045d2..90399c76 100644
--- a/tox.ini
+++ b/tox.ini

[airavata-sandbox] branch dependabot/maven/airavata-kubernetes/modules/helix-task-api/org.springframework-spring-web-6.0.0 created (now e64b58cf)

2022-12-09 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/airavata-kubernetes/modules/helix-task-api/org.springframework-spring-web-6.0.0
in repository https://gitbox.apache.org/repos/asf/airavata-sandbox.git


  at e64b58cf Bump spring-web in /airavata-kubernetes/modules/helix-task-api

No new revisions were added by this update.



[airavata-django-portal] branch dependabot/npm_and_yarn/django_airavata/apps/auth/qs-6.5.3 created (now a0daed29)

2022-12-09 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/django_airavata/apps/auth/qs-6.5.3
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


  at a0daed29 Bump qs from 6.5.2 to 6.5.3 in /django_airavata/apps/auth

No new revisions were added by this update.



[airavata-django-portal] branch dependabot/npm_and_yarn/django_airavata/static/common/qs-6.5.3 created (now 557de792)

2022-12-09 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/django_airavata/static/common/qs-6.5.3
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


  at 557de792 Bump qs from 6.5.2 to 6.5.3 in /django_airavata/static/common

No new revisions were added by this update.



[airavata-django-portal] branch dependabot/npm_and_yarn/django_airavata/apps/workspace/qs-6.5.3 created (now b936a646)

2022-12-09 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/django_airavata/apps/workspace/qs-6.5.3
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git


  at b936a646 Bump qs from 6.5.2 to 6.5.3 in /django_airavata/apps/workspace

No new revisions were added by this update.



[airavata] branch master updated: Updating new Zabbix Server Location

2022-12-09 Thread smarru
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/master by this push:
 new a1846c1014 Updating new Zabbix Server Location
a1846c1014 is described below

commit a1846c10145668007575bf408084cc091a89c404
Author: Suresh Marru 
AuthorDate: Fri Dec 9 10:34:08 2022 -0500

Updating new Zabbix Server Location
---
 dev-tools/ansible/inventories/scigap/production/group_vars/all/vars.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-tools/ansible/inventories/scigap/production/group_vars/all/vars.yml 
b/dev-tools/ansible/inventories/scigap/production/group_vars/all/vars.yml
index c3aae31f9b..d7c1d065b0 100644
--- a/dev-tools/ansible/inventories/scigap/production/group_vars/all/vars.yml
+++ b/dev-tools/ansible/inventories/scigap/production/group_vars/all/vars.yml
@@ -234,4 +234,4 @@ zabbix_subnets: "{{ iu_subnets }}"
 monitoring_subnets: "{{ iu_subnets }}"
 
 # Zabbix
-zabbix_server: "rt-watch.uits.indiana.edu"
+zabbix_server: "rt-monitor.uits.iu.edu"



[airavata-sandbox] branch dependabot/npm_and_yarn/gsoc2022/jupyter-platform-dashboard/qs-and-express-6.11.0 created (now e37abb22)

2022-12-09 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/gsoc2022/jupyter-platform-dashboard/qs-and-express-6.11.0
in repository https://gitbox.apache.org/repos/asf/airavata-sandbox.git


  at e37abb22 Bump qs and express in /gsoc2022/jupyter-platform-dashboard

No new revisions were added by this update.