Skip to content
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
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ For more info read this [doc](/docs/cloud/google-deploy.md).

Dependencies are managed with [pip-tools](https://github.com/jazzband/pip-tools).
Add new packages to `requirements.in` / `requirements.dev.in`
and compile `requirements.txt` / `requirements.dev.txt` with `pip-compile`.
and compile `requirements.txt` / `requirements.dev.txt` with
`uv pip compile requirements.in -o requirements.txt` (previously `pip-compile`).

You can run `pip list --outdated` to see outdated packages.

Expand Down
3 changes: 2 additions & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Maintain the alphabetical order
# Use pip list -o to check for outdated packages

beautifulsoup4==4.13.5
beautifulsoup4==4.14.3
cssmin==0.2.0

Django==4.2.26
Expand Down Expand Up @@ -41,4 +41,5 @@ micawber==0.5.6
pillow==10.4.0
psycopg2-binary==2.9.10
requests==2.32.5
urllib3==2.6.3
whoosh==2.7.4
19 changes: 8 additions & 11 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
#
# This file is autogenerated by pip-compile with Python 3.10
# by the following command:
#
# pip-compile
#
# This file was autogenerated by uv via the following command:
# uv pip compile requirements.in -o requirements.txt
asgiref==3.8.1
# via
# django
# django-countries
beautifulsoup4==4.13.5
beautifulsoup4==4.14.3
# via -r requirements.in
cachetools==5.3.3
# via google-auth
Expand Down Expand Up @@ -105,7 +101,7 @@ djangocms-picture==4.1.1
# via -r requirements.in
djangocms-text-ckeditor==5.1.7
# via -r requirements.in
easy-thumbnails[svg]==2.10.1
easy-thumbnails==2.10.1
# via
# -r requirements.in
# django-filer
Expand Down Expand Up @@ -208,11 +204,12 @@ tinycss2==1.2.1
# svglib
typing-extensions==4.11.0
# via
# asgiref
# beautifulsoup4
# django-countries
urllib3==2.2.1
# via requests
urllib3==2.6.3
# via
# -r requirements.in
# requests
webencodings==0.5.1
# via
# cssselect2
Expand Down
Loading