Skip to content

Commit c117519

Browse files
authored
Merge pull request #1206 from okfn/upgrade_urlib3
Force urllib3 upgrade and change to uv pip compile
2 parents 1e3644f + a524f88 commit c117519

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ For more info read this [doc](/docs/cloud/google-deploy.md).
164164

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

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

requirements.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Maintain the alphabetical order
44
# Use pip list -o to check for outdated packages
55

6-
beautifulsoup4==4.13.5
6+
beautifulsoup4==4.14.3
77
cssmin==0.2.0
88

99
Django==4.2.26
@@ -41,4 +41,5 @@ micawber==0.5.6
4141
pillow==10.4.0
4242
psycopg2-binary==2.9.10
4343
requests==2.32.5
44+
urllib3==2.6.3
4445
whoosh==2.7.4

requirements.txt

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
#
2-
# This file is autogenerated by pip-compile with Python 3.10
3-
# by the following command:
4-
#
5-
# pip-compile
6-
#
1+
# This file was autogenerated by uv via the following command:
2+
# uv pip compile requirements.in -o requirements.txt
73
asgiref==3.8.1
84
# via
95
# django
106
# django-countries
11-
beautifulsoup4==4.13.5
7+
beautifulsoup4==4.14.3
128
# via -r requirements.in
139
cachetools==5.3.3
1410
# via google-auth
@@ -105,7 +101,7 @@ djangocms-picture==4.1.1
105101
# via -r requirements.in
106102
djangocms-text-ckeditor==5.1.7
107103
# via -r requirements.in
108-
easy-thumbnails[svg]==2.10.1
104+
easy-thumbnails==2.10.1
109105
# via
110106
# -r requirements.in
111107
# django-filer
@@ -208,11 +204,12 @@ tinycss2==1.2.1
208204
# svglib
209205
typing-extensions==4.11.0
210206
# via
211-
# asgiref
212207
# beautifulsoup4
213208
# django-countries
214-
urllib3==2.2.1
215-
# via requests
209+
urllib3==2.6.3
210+
# via
211+
# -r requirements.in
212+
# requests
216213
webencodings==0.5.1
217214
# via
218215
# cssselect2

0 commit comments

Comments
 (0)