-
Notifications
You must be signed in to change notification settings - Fork 603
Expand file tree
/
Copy pathrequirements52.txt
More file actions
72 lines (65 loc) · 1.89 KB
/
requirements52.txt
File metadata and controls
72 lines (65 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# To run this, you should have a virtual environment with Django 5.2.
# To activate an existing environment, use
#
# source ~/.ve52/bin/activate
#
# If this fails, you need to create and configure a Django 5.2 environment
# as follows:
#
# cd ~
# deactivate # May fail - this is OK
# python -m venv .ve52
# source ~/.ve52/bin/activate
# python --version
#
# The Python version for Django 5.2 should be at least 3.10. It will most likely
# be 3.12 or later. Once you verify your Python version is correct, run:
#
# pip install --upgrade pip
# pip install -r requirements52.txt
# python -m django --version
#
# Your Django version should be 5.2 or later.
Django==5.2.9
# If you are not running on MySQL you can keep just use SQLite for everything.
# If you want to use MySQL, and are not running on PythonAnywhere
# there are some manual steps before you can install mysqlclient with pip.
# The line below only installs the Django mysql support on Linux systems (i.e. like PythonAnywhere)
mysqlclient==2.2.7; sys_platform == 'linux'
# See this web site for details:
# https://pypi.org/project/mysqlclient/
asgiref==3.11.0
beautifulsoup4==4.14.3
certifi==2025.11.12
cffi==1.17.1
charset-normalizer==3.4.4
crispy-bootstrap5==2025.6
cryptography==44.0.2
defusedxml==0.7.1
django-crispy-forms==2.5
django-extensions==4.1
django-filter==25.2
django-taggit==6.1.0
djangorestframework==3.16.0
idna==3.11
importlib_metadata==8.7.0
lxml==6.0.2
Markdown==3.7
oauthlib==3.3.1
pycparser==2.23
PyJWT==2.10.1
# Note: jwcrypto uses legacy setup.py build (deprecation warning expected but harmless)
# Latest version as of 2025 - package hasn't been updated to PEP 517 yet
jwcrypto==1.5.6
python3-openid==3.2.0
pytz==2025.2
requests>=2.32.5
requests-oauthlib==2.0.0
social-auth-app-django==5.6.0
social-auth-core==4.8.1
soupsieve==2.8
sqlparse==0.5.3
typing_extensions==4.15.0
urllib3==2.6.2
zipp==3.23.0
elasticsearch>=8.0.0