Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Streamlit and Python quickstarters and agent #975

Merged
merged 2 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### Added
- Added secret scanning in docker plain ([#963](https://github.com/opendevstack/ods-quickstarters/pull/963))
- Added Nodejs20 agent ([#962](https://github.com/opendevstack/ods-quickstarters/issues/962))
- Update Streamlit and Python quickstarters and agent ([#968](https://github.com/opendevstack/ods-quickstarters/issues/968))

### Modified

Expand Down
2 changes: 1 addition & 1 deletion be-python-flask/files/metadata.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Flask
description: "Flask is a micro web framework written in Python. Technologies: Flask 2.2.2, Python 3.9"
description: "Flask is a micro web framework written in Python. Technologies: Flask 3.0.0, Python 3.11"
supplier: https://www.palletsprojects.com/p/flask/
version: 4.x
type: ods
4 changes: 2 additions & 2 deletions be-python-flask/files/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
gunicorn==20.1.0
flask==2.3.2
gunicorn==21.2.0
flask==3.0.0
6 changes: 3 additions & 3 deletions be-python-flask/files/tests_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r ./requirements.txt

mypy==1.3.0
flake8==6.0.0
pytest==7.3.1
mypy==1.7.1
flake8==6.1.0
pytest==7.4.3
pytest-cov==4.1.0
2 changes: 1 addition & 1 deletion common/jenkins-agents/python/docker/Dockerfile.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN pipVersions=( pip3.8 pip3.9 pip3.11 ); \
fi; \
$pipV config set global.cert /etc/ssl/certs/ca-bundle.crt && \
$pipV install --upgrade pip --user && \
$pipV install virtualenv==20.23.0 setuptools==67.8.0 Cython==0.29.35 pypandoc==1.11; \
$pipV install virtualenv==20.25.0 setuptools==69.0.2 Cython==3.0.6 pypandoc==1.12; \
done;

# Enables default user to access $HOME folder
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/quickstarters/pages/be-python-flask.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ version: 1.0.1
type: ods
role: backend
runtime: flask
runtimeVersion: 2.2.2
runtimeVersion: 3.0.0
```


Expand Down
2 changes: 1 addition & 1 deletion docs/modules/quickstarters/pages/ds-streamlit.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ version: 1.0.1
type: ods
role: dashboard
runtime: streamlit
runtimeVersion: 0.18
runtimeVersion: 1.29.0
```

== How this quickstarter is built through Jenkins
Expand Down
6 changes: 3 additions & 3 deletions ds-streamlit/files/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
streamlit==1.22.0
plotly==5.14.1
pandas==2.0.2
streamlit==1.29.0
plotly==5.18.0
pandas==2.1.4
8 changes: 4 additions & 4 deletions ds-streamlit/files/test_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-r ./requirements.txt

mypy==1.3.0
flake8==6.0.0
pytest==7.3.1
mypy==1.7.1
flake8==6.1.0
pytest==7.4.3
pytest-cov==4.1.0
black==23.3.0
black==23.11.0