Skip to content

Commit

Permalink
Bump setuptools from 65.4.0 to 65.5.1 (#208)
Browse files Browse the repository at this point in the history
* Add default_auto_field and migration.

* Bump django from 3.2.15 to 3.2.18 (#209)

* Bump django from 3.2.15 to 3.2.18

Bumps [django](https://github.com/django/django) from 3.2.15 to 3.2.18.
- [Release notes](https://github.com/django/django/releases)
- [Commits](django/django@3.2.15...3.2.18)

---
updated-dependencies:
- dependency-name: django
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

* Bump setuptools from 65.4.0 to 65.5.1

Bumps [setuptools](https://github.com/pypa/setuptools) from 65.4.0 to 65.5.1.
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/CHANGES.rst)
- [Commits](pypa/setuptools@v65.4.0...v65.5.1)

---
updated-dependencies:
- dependency-name: setuptools
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Víðir Valberg Guðmundsson <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Mar 28, 2023
1 parent 2dd842e commit da96276
Show file tree
Hide file tree
Showing 4 changed files with 337 additions and 312 deletions.
2 changes: 0 additions & 2 deletions invitations/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,3 @@ def get_form(self, request, obj=None, **kwargs):
kwargs["form"].user = request.user
kwargs["form"].request = request
return super().get_form(request, obj, **kwargs)


1 change: 1 addition & 0 deletions invitations/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
class Config(AppConfig):
"""Config."""

default_auto_field = "django.db.models.BigAutoField"
name = "invitations"
label = "invitations"
26 changes: 26 additions & 0 deletions invitations/migrations/0004_auto_20230328_1430.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Generated by Django 3.2.15 on 2023-03-28 14:30

from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
('invitations', '0003_auto_20151126_1523'),
]

operations = [
migrations.AlterField(
model_name='invitation',
name='id',
field=models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
migrations.AlterField(
model_name='invitation',
name='inviter',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL, verbose_name='inviter'),
),
]
Loading

0 comments on commit da96276

Please sign in to comment.