Update deps

This commit is contained in:
Johannes Schriewer 2025-01-05 19:00:56 +01:00
parent d5764ea7aa
commit 39c8a9af80
3 changed files with 657 additions and 595 deletions

View file

@ -32,7 +32,7 @@ following might sound familiar:
- Development server (not for deployment!): `poetry run python manage.py runserver`
- Deployment via `gunicorn` on port 8000: `poetry run gunicorn inventory_project.wsgi -b 0.0.0.0:8000`
Then login on `http://localhost;8000/admin/` for the Django admin interface or
Then login on `http://localhost:8000/admin/` for the Django admin interface or
go to `http://localhost:8000` to enter the inventory management system directly
### Additional information

1238
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -6,13 +6,13 @@ authors = ["Johannes Schriewer <hallo@dunkelstern.de>"]
[tool.poetry.dependencies]
python = "^3.10"
django = "^5.0"
gunicorn = "^20.0.0"
whitenoise = "^6.6.0"
commentjson = "^0.9.0"
psycopg = { version = "^3.1.0", extras = [ "binary" ] }
django = "^5"
gunicorn = "^20"
whitenoise = "^6.6"
commentjson = "^0.9"
psycopg = { version = "^3", extras = [ "binary" ] }
django-nested-admin = "^4.0.0"
pillow = "^10.1.0"
pillow = "^10"
[tool.poetry.group.dev.dependencies]
mypy = "*"