Skip to content

Commit f24251e

Browse files
authored
Django 6.0 support improvements (#1559)
* Replace 6.0a1 refs with the stable release * Add Django 6.0 to trove classifiers * Add @ulgens to AUTHORS.rst
1 parent 4c109d0 commit f24251e

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
# Install this project in editable mode, so that its package metadata can be queried
123123
pip install --editable .
124124
# Install the latest minor version of Django we support
125-
pip install --pre "Django>=6.0a1"
125+
pip install "Django>=6.0,<6.1"
126126
127127
- name: Check translation files are updated
128128
run: python -m simple_history.tests.generated_file_checks.check_translations

AUTHORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ Authors
137137
- Tommy Beadle (`tbeadle <https://github.com/tbeadle>`_)
138138
- Trey Hunner (`treyhunner <https://github.com/treyhunner>`_)
139139
- Ulysses Vilela
140+
- Ülgen Sarıkavak (`ulgens <https://github.com/ulgens/>`_)
140141
- `vnagendra <https://github.com/vnagendra>`_
141142
- `yakimka <https://github.com/yakimka>`_
142143
- `Paulo Peres <https://github.com/PauloPeres>`_

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers = [
2424
"Framework :: Django :: 5.0",
2525
"Framework :: Django :: 5.1",
2626
"Framework :: Django :: 5.2",
27+
"Framework :: Django :: 6.0",
2728
"Intended Audience :: Developers",
2829
"License :: OSI Approved :: BSD License",
2930
"Programming Language :: Python",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ deps =
3737
dj50: Django>=5.0,<5.1
3838
dj51: Django>=5.1,<5.2
3939
dj52: Django>=5.2,<5.3
40-
dj60: Django>=6.0a1,<6.1 # Use a1 to allow testing of the release candidates
40+
dj60: Django>=6.0,<6.1
4141
djmain: https://github.com/django/django/tarball/main
4242
postgres: -rrequirements/postgres.txt
4343
mysql: -rrequirements/mysql.txt

0 commit comments

Comments
 (0)