Skip to content

Commit

Permalink
Pin django at v4.0; provide migration
Browse files Browse the repository at this point in the history
Closes #59
  • Loading branch information
dschristianson authored and vchendrix committed Jan 9, 2024
1 parent fd23354 commit 0409579
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Generated by Django 4.0 on 2023-10-13 20:19 by Hesham

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('django_basin3d', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='attributemapping',
name='id',
field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
migrations.AlterField(
model_name='datasource',
name='id',
field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ readme = "README.md"
requires-python = '>=3.8,<3.11'
dependencies = [
'basin3d==0.5.0',
'django>=4.0',
'django==4.0',
'djangorestframework',
'django-filter',
'markdown',
Expand Down

0 comments on commit 0409579

Please sign in to comment.