File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ permissions:
15
15
16
16
env :
17
17
DJANGO_SETTINGS_MODULE : tracdjangoplugin.settings_tests
18
+ # passlib has a conditional import for `crypt` which is going away in python 3.13
19
+ # and therefore throwing warnings
18
20
PYTHONWARNINGS : >
19
21
error,
20
22
default:::passlib.utils,
Original file line number Diff line number Diff line change 1
1
# pull official base image
2
- FROM python:3.12 -slim-bookworm
2
+ FROM python:3.11 -slim-bookworm
3
3
4
4
# set work directory
5
5
WORKDIR /code
Original file line number Diff line number Diff line change @@ -5,7 +5,9 @@ psycopg2==2.9.9 --no-binary=psycopg2
5
5
Django == 4.2.16
6
6
libsass == 0.23.0
7
7
8
- # Optional Trac dependencies that make DeprecationWarning go away
8
+ # Optional Trac dependencies that make DeprecationWarning go away.
9
+ # When upgrading Trac or Python, check if these dependencies are still needed
10
+ # by uninstalling them and running the test suite (or CI) with PYTHONWARNINGS=error
9
11
multipart == 1.1.0
10
12
passlib == 1.7.4
11
13
You can’t perform that action at this time.
0 commit comments