Skip to content

Commit e57ad5d

Browse files
committed
Update deps & add pyproject.tml file
1 parent 0557890 commit e57ad5d

File tree

4 files changed

+109
-3
lines changed

4 files changed

+109
-3
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,18 @@ cd simple-django-login-and-register
4646
#### Create a virtualenv using `uv`
4747

4848
```bash
49-
uv venv --python 3.12
49+
uv venv --python 3.13
5050

5151
source .venv/bin/activate
5252
```
5353

5454
#### Install dependencies
5555

5656
```bash
57+
uv sync
58+
59+
# Or using requirements files:
60+
5761
uv pip install -r requirements.txt
5862

5963
# in development mode

pyproject.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[project]
2+
name = "simple-django-login-and-register"
3+
version = "0.4.6"
4+
description = "An example of Django project with basic user functionality."
5+
readme = "README.md"
6+
requires-python = ">=3.12"
7+
dependencies = [
8+
"Django==5.1.2",
9+
"django-bootstrap4==24.4",
10+
]

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Django==5.1
2-
django-bootstrap4==24.3
1+
Django==5.1.2
2+
django-bootstrap4==24.4

uv.lock

Lines changed: 92 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)