Skip to content
Draft
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
2 changes: 1 addition & 1 deletion sample_projects/sample_python_project/.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ stages:

qualitygate:
stage: qualitygate
image: python:3.8
image: python:3.12
variables:
PIPENV_VENV_IN_PROJECT: "true"
script:
Expand Down
4 changes: 2 additions & 2 deletions sample_projects/sample_python_project/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ verify_ssl = true
name = "pypi"

[packages]
urllib3 = "<=1.26.18"
urllib3 = ">=2.6.3"

[dev-packages]
pylint = "*"
mypy = "*"

[requires]
python_version = "3.8"
python_version = "3.12"
Loading