Skip to content

Commit ea380fb

Browse files
committed
⬆️ Bump Python to 3.13 and upgrade dependencies
1 parent f93b32c commit ea380fb

File tree

2 files changed

+26
-24
lines changed

2 files changed

+26
-24
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ name = "{{ project_name }}"
33
version = "0.1.0"
44
description = "Add your description here"
55
readme = "README.md"
6-
requires-python = ">=3.12"
6+
requires-python = ">=3.13"
77
dependencies = [
8-
"django<5.2",
8+
"django<6.0",
99
"django-click",
1010
"environs[django]",
1111
"psycopg[binary]",
1212
"whitenoise",
1313
]
1414

1515
[tool.black]
16-
target-version = ["py312"]
16+
target-version = ["py313"]
1717

1818
[tool.coverage.run]
1919
omit = [
@@ -53,8 +53,8 @@ exclude = [
5353
]
5454
# Same as Black.
5555
line-length = 120
56-
# Assume Python 3.12.
57-
target-version = "py312"
56+
# Assume Python 3.13.
57+
target-version = "py313"
5858

5959
[tool.ruff.lint]
6060
# Allow unused variables when underscore-prefixed.

requirements.txt

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# This file was autogenerated by uv via the following command:
22
# uv pip compile --output-file requirements.txt requirements.in
3-
asgiref==3.8.1
3+
asgiref==3.9.1
44
# via django
55
cfgv==3.4.0
66
# via pre-commit
7-
click==8.2.0
7+
click==8.2.1
88
# via django-click
9-
coverage==7.8.0
9+
coverage==7.9.2
1010
# via pytest-cov
11-
distlib==0.3.9
11+
distlib==0.4.0
1212
# via virtualenv
13-
dj-database-url==2.3.0
13+
dj-database-url==3.0.1
1414
# via environs
1515
dj-email-url==1.0.6
1616
# via environs
17-
django==5.2.1
17+
django==5.2.4
1818
# via
1919
# -r requirements.in
2020
# dj-database-url
@@ -23,51 +23,53 @@ django-cache-url==3.4.5
2323
# via environs
2424
django-click==2.4.1
2525
# via -r requirements.in
26-
django-test-plus==2.2.4
26+
django-test-plus==2.3.0
2727
# via -r requirements.in
28-
environs==14.1.1
28+
environs==14.2.0
2929
# via -r requirements.in
3030
filelock==3.18.0
3131
# via virtualenv
32-
identify==2.6.10
32+
identify==2.6.12
3333
# via pre-commit
3434
iniconfig==2.1.0
3535
# via pytest
3636
marshmallow==4.0.0
3737
# via environs
38-
model-bakery==1.20.4
38+
model-bakery==1.20.5
3939
# via -r requirements.in
4040
nodeenv==1.9.1
4141
# via pre-commit
4242
packaging==25.0
4343
# via pytest
4444
platformdirs==4.3.8
4545
# via virtualenv
46-
pluggy==1.5.0
47-
# via pytest
46+
pluggy==1.6.0
47+
# via
48+
# pytest
49+
# pytest-cov
4850
pre-commit==4.2.0
4951
# via -r requirements.in
50-
psycopg==3.2.8
52+
psycopg==3.2.9
5153
# via -r requirements.in
52-
psycopg-binary==3.2.8
54+
psycopg-binary==3.2.9
5355
# via psycopg
54-
pytest==8.3.5
56+
pygments==2.19.2
57+
# via pytest
58+
pytest==8.4.1
5559
# via
5660
# -r requirements.in
5761
# pytest-cov
5862
# pytest-django
59-
pytest-cov==6.1.1
63+
pytest-cov==6.2.1
6064
# via -r requirements.in
6165
pytest-django==4.11.1
6266
# via -r requirements.in
63-
python-dotenv==1.1.0
67+
python-dotenv==1.1.1
6468
# via environs
6569
pyyaml==6.0.2
6670
# via pre-commit
6771
sqlparse==0.5.3
6872
# via django
69-
typing-extensions==4.13.2
70-
# via dj-database-url
7173
virtualenv==20.31.2
7274
# via pre-commit
7375
whitenoise==6.9.0

0 commit comments

Comments
 (0)