Skip to content
Open
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
5 changes: 3 additions & 2 deletions app/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
asgiref==3.4.1
celery==5.1.2
confusable-homoglyphs==3.2.0
Django==3.2.6
Django==4.2.27
django-braces==1.15.0
django-celery-results==2.2.0
psycopg2-binary==2.9.1
pytz==2021.1
pymongo==3.12.1
python-dateutil==2.8.2
sqlparse==0.4.1
sqlparse==0.5.4
lxml==4.6.3
minio==7.1.0
gunicorn==20.1.0
-e git+https://github.com/scieloorg/opac_schema.git@v2.62#egg=opac_schema
-e git+https://github.com/scieloorg/dsm.git@v0.1.1#egg=dsm
-e git+https://github.com/scieloorg/scielo_v3_manager.git@0.6#egg=scielo_v3_manager
urllib3>=2.6.0 # not directly required, pinned by Snyk to avoid a vulnerability
Copy link

Copilot AI Dec 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using >=2.6.0 for urllib3 allows any future version to be installed, which could introduce breaking changes or new vulnerabilities. For reproducible builds and better dependency management, consider pinning to a specific version or using a constraint like >=2.6.0,<3.0.0.

Example: urllib3>=2.6.0,<3.0.0 # not directly required, pinned by Snyk to avoid a vulnerability

Suggested change
urllib3>=2.6.0 # not directly required, pinned by Snyk to avoid a vulnerability
urllib3>=2.6.0,<3.0.0 # not directly required, pinned by Snyk to avoid a vulnerability

Copilot uses AI. Check for mistakes.