mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-11 09:48:50 +00:00
* chore(deps): bump django from 4.2.20 to 4.2.21 in /src/backend Bumps [django](https://github.com/django/django) from 4.2.20 to 4.2.21. - [Commits](https://github.com/django/django/compare/4.2.20...4.2.21) --- updated-dependencies: - dependency-name: django dependency-version: 4.2.21 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * fix req * adjust setuptools to be equal * ensure same version is used * add missing constraint --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Matthias Mair <code@mjmair.com>
25 lines
583 B
Plaintext
25 lines
583 B
Plaintext
# Base python requirements for docker containers
|
|
-c ../../src/backend/requirements.txt
|
|
|
|
# Basic package requirements
|
|
invoke>=2.2.0 # Invoke build tool
|
|
pyyaml>=6.0.1
|
|
setuptools>=69.0.0
|
|
wheel>=0.41.0
|
|
|
|
# Database links
|
|
psycopg[binary, pool]
|
|
mysqlclient>=2.2.0
|
|
mariadb>=1.1.8
|
|
|
|
# gunicorn web server
|
|
gunicorn>=22.0.0
|
|
|
|
# LDAP required packages
|
|
django-auth-ldap # Django integration for ldap auth
|
|
python-ldap # LDAP auth support
|
|
django<5.0 # Force lower to match main project
|
|
|
|
# Upgraded python package installer
|
|
uv
|