Skip to content

Commit

Permalink
Drop CITextExtension, since it is not deprecated in Django
Browse files Browse the repository at this point in the history
  • Loading branch information
codingjoe committed Feb 22, 2024
1 parent 63b926b commit d816153
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
1 change: 0 additions & 1 deletion citext/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from . import _version
from .fields import * # noqa
from .operations import * # noqa

__version__ = _version.version
VERSION = _version.version_tuple
8 changes: 0 additions & 8 deletions citext/operations.py

This file was deleted.

4 changes: 2 additions & 2 deletions tests/testapp/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Generated by Django 4.2.5 on 2023-09-05 15:16

from django.contrib.postgres.operations import CITextExtension
from django.db import migrations, models

import citext
Expand All @@ -11,7 +11,7 @@ class Migration(migrations.Migration):
dependencies = []

operations = [
citext.operations.CITextExtension(),
CITextExtension(),
migrations.CreateModel(
name="TestModel",
fields=[
Expand Down

0 comments on commit d816153

Please sign in to comment.