Skip to content

Commit

Permalink
build: Add requests. Add migration.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 21, 2024
1 parent 8b2423b commit 8c8da15
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions cove_ocds/migrations/0004_supplieddata_expired.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.2.16 on 2024-10-21 02:02

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("cove_ocds", "0003_remove_supplieddata_current_app_and_more"),
]

operations = [
migrations.AddField(
model_name="supplieddata",
name="expired",
field=models.BooleanField(default=False),
),
]
1 change: 1 addition & 0 deletions requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ flattentool
gunicorn[setproctitle]
libcove
libcoveocds[perf,web]
requests
sentry-sdk
werkzeug
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ referencing==0.29.1
# libcoveocds
requests==2.32.3
# via
# -r requirements.in
# libcove
# libcoveocds
# ocdsextensionregistry
Expand Down
1 change: 0 additions & 1 deletion requirements_dev.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ libsass
pytest
pytest-django
pytest-localserver
requests
selenium
1 change: 0 additions & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ referencing==0.29.1
requests==2.32.3
# via
# -r requirements.txt
# -r requirements_dev.in
# libcove
# libcoveocds
# ocdsextensionregistry
Expand Down

0 comments on commit 8c8da15

Please sign in to comment.