Skip to content

Commit

Permalink
Update to Django 5
Browse files Browse the repository at this point in the history
  • Loading branch information
jelly committed May 28, 2024
1 parent 36c4a97 commit 929d2fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions releng/migrations/0001_squashed_0005_auto_20180616_0947.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

import django.db.models.deletion
from django.db import migrations, models
from django.utils.timezone import utc


# Functions from the following migrations need manual copying.
Expand Down Expand Up @@ -145,7 +144,7 @@ class Migration(migrations.Migration):
('available', models.BooleanField(default=True)),
('info', models.TextField(blank=True, verbose_name='Public information')),
('torrent_data', models.TextField(blank=True, help_text='base64-encoded torrent file')),
('last_modified', models.DateTimeField(default=datetime.datetime(2001, 1, 1, 0, 0, tzinfo=utc), editable=False)),
('last_modified', models.DateTimeField(default=datetime.datetime(2001, 1, 1, 0, 0, tzinfo=datetime.timezone.utc), editable=False)),
],
options={
'ordering': ('-release_date', '-version'),
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-e git+https://github.com/fredj/cssmin.git@master#egg=cssmin
Django==4.2.11
Django==5.0.6
IPy==1.1
Markdown==3.3.7
bencode.py==4.0.0
Expand Down

0 comments on commit 929d2fe

Please sign in to comment.