Skip to content

Commit 16c289e

Browse files
committed
fix #72, fix #95, fix #96, fix #98, fix #99
1 parent 4498c22 commit 16c289e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+2668
-1470
lines changed

.github/workflows/test.yml

+9
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
- '3.2' # LTS April 2024
3636
- '4.2' # LTS April 2026
3737
- '5.1' # December 2025
38+
- '5.2b1'
3839
exclude:
3940
- django-version: '4.2'
4041
postgres-version: '9.6'
@@ -55,8 +56,16 @@ jobs:
5556
- postgres-version: '9.6'
5657
django-version: '5.1'
5758

59+
- postgres-version: '9.6'
60+
django-version: '5.2b1'
61+
62+
- postgres-version: '12'
63+
django-version: '5.2b1'
64+
5865
- python-version: '3.9'
5966
django-version: '5.1'
67+
- python-version: '3.9'
68+
django-version: '5.2b1'
6069
- python-version: '3.13'
6170
django-version: '3.2'
6271
- python-version: '3.13'

README.md

+32-25
Original file line numberDiff line numberDiff line change
@@ -24,23 +24,23 @@
2424

2525
🚨 **See [migration guide](https://django-enum.readthedocs.io/en/latest/changelog.html#migration-1-x-to-2-x) for notes on 1.x to 2.x migration.** 🚨
2626

27-
Full and natural support for [enumerations](https://docs.python.org/3/library/enum.html#enum.Enum) as Django model fields.
27+
Full and natural support for [PEP435](https://peps.python.org/pep-0435) [enumerations](https://docs.python.org/3/library/enum.html#enum.Enum) as [Django](https://www.djangoproject.com) model fields.
2828

29-
Many packages aim to ease usage of Python enumerations as model fields. Most were superseded when Django provided ``TextChoices`` and ``IntegerChoices`` types. The motivation for [django-enum](https://django-enum.readthedocs.io) was to:
29+
Many packages aim to ease usage of Python enumerations as model fields. Most were superseded when Django provided [TextChoices](https://docs.djangoproject.com/en/stable/ref/models/fields/#field-choices-enum-types) and [IntegerChoices](https://docs.djangoproject.com/en/stable/ref/models/fields/#field-choices-enum-types) types. The motivation for [django-enum](https://pypi.org/project/enum-properties) was to:
3030

31-
* Work with any Python PEP 435 Enum including those that do not derive from Django's TextChoices and IntegerChoices.
32-
* Coerce fields to instances of the Enum type by default.
33-
* Allow strict adherence to Enum values to be disabled.
31+
* Work with any [Enum](https://docs.python.org/3/library/enum.html#enum.Enum) including those that do not derive from Django's [TextChoices](https://docs.djangoproject.com/en/stable/ref/models/fields/#field-choices-enum-types) and [IntegerChoices](https://docs.djangoproject.com/en/stable/ref/models/fields/#field-choices-enum-types).
32+
* Coerce fields to instances of the [Enum](https://docs.python.org/3/library/enum.html#enum.Enum) type by default.
33+
* Allow strict adherence to [Enum](https://docs.python.org/3/library/enum.html#enum.Enum) values to be disabled.
3434
* Handle migrations appropriately. (See [migrations](https://django-enum.readthedocs.io/en/latest/usage.html#migrations))
35-
* Integrate as fully as possible with [Django's](https://www.djangoproject.com) existing level of enum support.
36-
* Support [enum-properties](https://pypi.org/project/enum-properties) to enable richer enumeration types. (A less awkward alternative to dataclass enumerations with more features)
35+
* Integrate as fully as possible with Django's [existing level of enum support](https://docs.djangoproject.com/en/stable/ref/models/fields/#field-choices-enum-types).
36+
* Support [enum-properties](https://pypi.org/project/enum-properties) to enable richer enumeration types. (A less awkward alternative to [dataclass enumerations](https://docs.python.org/3/howto/enum.html#enum-dataclass-support) with more features)
3737
* Represent enum fields with the smallest possible column type.
38-
* Support bit mask queries using standard Python Flag enumerations.
38+
* Support [bit field](https://en.wikipedia.org/wiki/Bit_field) queries using standard Python Flag enumerations.
3939
* Be as simple and light-weight an extension to core [Django](https://www.djangoproject.com) as possible.
40-
* Enforce enumeration value consistency at the database level using check constraints by default.
40+
* Enforce enumeration value consistency at the database level using [check constraints](https://docs.djangoproject.com/en/stable/ref/models/constraints) by default.
4141
* (TODO) Support native database enumeration column types when available.
4242

43-
[django-enum](https://django-enum.readthedocs.io) works in concert with [Django's](https://www.djangoproject.com) built in ``TextChoices`` and ``IntegerChoices`` to provide a new model field type, ``EnumField``, that resolves the correct native [Django](https://www.djangoproject.com) field type for the given enumeration based on its value type and range. For example, ``IntegerChoices`` that contain values between 0 and 32767 become [PositiveSmallIntegerField](https://docs.djangoproject.com/en/stable/ref/models/fields/#positivesmallintegerfield).
43+
[django-enum](https://pypi.org/project/enum-properties) provides a new model field type, [EnumField](https://django-enum.rtfd.io/en/stable/reference/fields.html#django_enum.fields.EnumField), that allows you to treat almost any [PEP435](https://peps.python.org/pep-0435) enumeration as a database column. [EnumField](https://django-enum.rtfd.io/en/stable/reference/fields.html#django_enum.fields.EnumField) resolves the correct native [Django](https://www.djangoproject.com) field type for the given enumeration based on its value type and range. For example, [IntegerChoices](https://docs.djangoproject.com/en/stable/ref/models/fields/#field-choices-enum-types) that contain values between 0 and 32767 become [PositiveSmallIntegerField](https://docs.djangoproject.com/en/stable/ref/models/fields/#positivesmallintegerfield).
4444

4545
```python
4646

@@ -70,7 +70,7 @@ Many packages aim to ease usage of Python enumerations as model fields. Most wer
7070
int_enum = EnumField(IntEnum, default=IntEnum.ONE)
7171
```
7272

73-
``EnumField`` **is more than just an alias. The fields are now assignable and accessible as their enumeration type rather than by-value:**
73+
[EnumField](https://django-enum.rtfd.io/en/stable/reference/fields.html#django_enum.fields.EnumField) **is more than just an alias. The fields are now assignable and accessible as their enumeration type rather than by-value:**
7474

7575
```python
7676

@@ -86,9 +86,9 @@ Many packages aim to ease usage of Python enumerations as model fields. Most wer
8686
assert instance.int_enum.value == 3
8787
```
8888

89-
## Flag Support
89+
## Flag Support (BitFields)
9090

91-
[Flag](https://docs.python.org/3/library/enum.html#enum.Flag) types are also seamlessly supported! This allows a database column to behave like a bit mask and is an alternative to multiple boolean columns. There are mostly positive performance implications for using a bit mask instead of booleans depending on the size of the bit mask and the types of queries you will run against it. For bit masks more than a few bits long the size reduction both speeds up queries and reduces the required storage space. See the documentation for [discussion and benchmarks](https://django-enum.readthedocs.io/en/latest/performance.html#flags).
91+
[Flag](https://docs.python.org/3/library/enum.html#enum.Flag) types are also seamlessly supported! This allows a database column to behave like a bit field and is an alternative to having multiple boolean columns. There are positive performance implications for using a bit field instead of booleans proportional on the size of the bit field and the types of queries you will run against it. For bit fields more than a few bits long the size reduction both speeds up queries and reduces the required storage space. See the documentation for [discussion and benchmarks](https://django-enum.readthedocs.io/en/latest/performance.html#flags).
9292

9393
```python
9494

@@ -112,7 +112,7 @@ Many packages aim to ease usage of Python enumerations as model fields. Most wer
112112

113113
## Complex Enumerations
114114

115-
[django-enum](https://django-enum.readthedocs.io) supports enum types that do not derive from Django's ``IntegerChoices`` and ``TextChoices``. This allows us to use other libs like [enum-properties](https://pypi.org/project/enum-properties) which makes possible very rich enumeration fields:
115+
[django-enum](https://pypi.org/project/django-enum) supports enum types that do not derive from Django's [IntegerChoices](https://docs.djangoproject.com/en/stable/ref/models/fields/#field-choices-enum-types) and [TextChoices](https://docs.djangoproject.com/en/stable/ref/models/fields/#field-choices-enum-types). This allows us to use other libs like [enum-properties](https://pypi.org/project/enum-properties) which makes possible very rich enumeration fields:
116116

117117
``?> pip install enum-properties``
118118

@@ -176,7 +176,7 @@ Many packages aim to ease usage of Python enumerations as model fields. Most wer
176176
assert TextChoicesExample.objects.filter(color='FF0000').first() == instance
177177
```
178178

179-
While they should be unnecessary if you need to integrate with code that expects an interface fully compatible with Django's ``TextChoices`` and ``IntegerChoices`` django-enum provides ``TextChoices``, ``IntegerChoices``, ``FlagChoices`` and ``FloatChoices`` types that derive from enum-properties and Django's ``Choices``. So the above enumeration could also be written:
179+
While they should be unnecessary if you need to integrate with code that expects an interface fully compatible with Django's [TextChoices](https://docs.djangoproject.com/en/stable/ref/models/fields/#field-choices-enum-types) and [IntegerChoices](https://docs.djangoproject.com/en/stable/ref/models/fields/#field-choices-enum-types) [django-enum](https://pypi.org/project/django-enum) provides [TextChoices](https://django-enum.rtfd.io/en/stable/reference/choices.html#django_enum.choices.TextChoices), [IntegerChoices](https://django-enum.rtfd.io/en/stable/reference/choices.html#django_enum.choices.IntegerChoices), [FlagChoices](https://django-enum.rtfd.io/en/stable/reference/choices.html#django_enum.choices.FlagChoices) and [FloatChoices](https://django-enum.rtfd.io/en/stable/reference/choices.html#django_enum.choices.FloatChoices) types that derive from enum-properties and Django's ``Choices``. So the above enumeration could also be written:
180180

181181
```python
182182

@@ -204,23 +204,30 @@ While they should be unnecessary if you need to integrate with code that expects
204204
pip install django-enum
205205
```
206206

207-
``django-enum`` has several optional dependencies that are not pulled in by default. ``EnumFields`` work seamlessly with all Django apps that work with model fields with choices without any additional work. Optional integrations are provided with several popular libraries to extend this basic functionality.
207+
[django-enum](https://pypi.org/project/django-enum) has several optional dependencies that are not installed by default. [EnumField](https://django-enum.rtfd.io/en/stable/reference/fields.html#django_enum.fields.EnumField) works seamlessly with all Django apps that work with model fields with choices without any additional work. Optional integrations are provided with several popular libraries to extend this basic functionality, these include:
208208

209-
Integrations are provided that leverage [enum-properties](https://pypi.org/project/enum-properties) to make enumerations do more work and to provide extended functionality for [django-filter](https://pypi.org/project/django-filter) and [djangorestframework](https://www.django-rest-framework.org).
210209

211-
```bash
212-
pip install enum-properties
213-
pip install django-filter
214-
pip install djangorestframework
215-
```
210+
* [enum-properties](https://pypi.org/project/enum-properties)
211+
```bash
212+
> pip install "django-enum[properties]"
213+
```
214+
* [django-filter](https://pypi.org/project/django-filter)
215+
* [djangorestframework](https://www.django-rest-framework.org)
216+
216217

217-
## Continuous Integration
218+
## Database Support
219+
220+
[![Postgres](https://img.shields.io/badge/Postgres-9.6%2B-blue)](https://www.postgresql.org/)
221+
[![MySQL](https://img.shields.io/badge/MySQL-5.7%2B-blue)](https://www.mysql.com/)
222+
[![MariaDB](https://img.shields.io/badge/MariaDB-10.2%2B-blue)](https://mariadb.org/)
223+
[![SQLite](https://img.shields.io/badge/SQLite-3.8%2B-blue)](https://www.sqlite.org/)
224+
[![Oracle](https://img.shields.io/badge/Oracle-18%2B-blue)](https://www.oracle.com/database/)
218225

219-
Like with Django, Postgres is the preferred database for support. The full test suite is run against all combinations of currently supported versions of Django, Python, and Postgres as well as psycopg3 and psycopg2. The other RDBMS supported by Django are also tested including SQLite, MySQL, MariaDB and Oracle. For these RDBMS (with the exception of Oracle), tests are run against the minimum and maximum supported version combinations to maximize coverage breadth.
226+
Like with [Django](https://www.djangoproject.com), [PostgreSQL](https://www.postgresql.org) is the preferred database for support. The full test suite is run against all combinations of currently supported versions of [Django](https://www.djangoproject.com), [Python](https://www.python.org), and [PostgreSQL](https://www.postgresql.org) as well as [psycopg3](https://pypi.org/project/psycopg) and [psycopg2](https://pypi.org/project/psycopg2). The other RDBMS supported by [Django](https://www.djangoproject.com) are also tested including [SQLite](https://www.sqlite.org), [MySQL](https://www.mysql.com), [MariaDB](https://mariadb.org) and [Oracle](https://www.oracle.com/database). For these RDBMS (with the exception of [Oracle](https://www.oracle.com/database), tests are run against the minimum and maximum supported version combinations to maximize coverage breadth.
220227

221228
**See the [latest test runs](https://github.com/bckohan/django-enum/actions/workflows/test.yml) for our current test matrix**
222229

223-
*For Oracle, only the latest version of the free database is tested against the minimum and maximum supported versions of Python, Django and the cx-Oracle driver.*
230+
For [Oracle](https://www.oracle.com/database), only the latest version of the free database is tested against the minimum and maximum supported versions of Python, Django and the [cx-Oracle](https://pypi.org/project/cx-Oracle) driver.
224231

225232
## Further Reading
226233

doc/source/changelog.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44
Change Log
55
==========
66

7-
v2.2.0 (2025-03-07)
7+
v2.2.0 (2025-03-XX)
88
===================
99

10+
* Implemented `Test all example code in the docs <https://github.com/bckohan/django-enum/issues/99>`_
1011
* Implemented `Use intersphinx for doc references <https://github.com/bckohan/django-enum/issues/98>`_
1112
* Implemented `Support Django 5.2 <https://github.com/bckohan/django-enum/issues/96>`_
1213
* Implemented `Upgrade to enum-properties >=2.2 <https://github.com/bckohan/django-enum/issues/95>`_

doc/source/conf.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@
2828

2929
# -- Project information -----------------------------------------------------
3030

31-
project = 'django_enum'
32-
copyright = f'2022-{datetime.now().year}, Brian Kohan'
33-
author = 'Brian Kohan'
34-
35-
# The full version, including alpha/beta/rc tags
31+
project = django_enum.__title__
32+
copyright = django_enum.__copyright__
33+
author = django_enum.__author__
3634
release = django_enum.__version__
3735

3836

@@ -83,6 +81,7 @@
8381
),
8482
"enum-properties": ("https://enum-properties.readthedocs.io/en/stable", None),
8583
"django-render-static": ("https://django-render-static.readthedocs.io/en/stable", None),
84+
"django-filter": ("https://django-filter.readthedocs.io/en/stable", None),
8685
"python": ('https://docs.python.org/3', None)
8786
}
8887

doc/source/eccentric.rst

+106
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
.. include:: refs.rst
2+
3+
.. _eccentric:
4+
5+
===============
6+
Eccentric Enums
7+
===============
8+
9+
Python's :class:`enum.Enum` type is extremely lenient. Enumeration values may be any hashable type
10+
and values of the same enumeration may be of different types.
11+
12+
.. tip::
13+
14+
We define an eccentric enumeration to be any enumeration where the value type is not a simple
15+
string or integer or where the enumeration values are not all of the same type.
16+
17+
For use in databases it is recommended to use more strict enumeration types that only allow a single
18+
value type of either string or integer. If additional properties need to be associated with
19+
enumeration values, a library like :doc:`enum-properties:index` should be used to store them on the
20+
enumeration value classes.
21+
22+
However, the goal of django-enum_ is to provide as complete of a bridge as possible between Python
23+
and the database so eccentric enumerations are supported with caveats. The following enumeration
24+
value types are supported out of the box, and map to the obvious
25+
:ref:`model field type <ref/models/fields:field types>`.
26+
27+
* :class:`int`
28+
* :class:`str`
29+
* :class:`float`
30+
* :class:`datetime.date`
31+
* :class:`datetime.datetime`
32+
* :class:`datetime.time`
33+
* :class:`datetime.timedelta`
34+
* :class:`decimal.Decimal`
35+
36+
You should avoid eccentric enums if possible, but there may be some compelling reasons to use them.
37+
For example, for unusual data types it may make sense in situations where the database will be used
38+
in a non-Python context and the enumeration values need to retain their native meaning. Or you may
39+
not have direct control over the enumeration you want to store.
40+
41+
Mixed Value Enumerations
42+
========================
43+
44+
Mixed value enumerations are supported. For example:
45+
46+
.. literalinclude:: ../../tests/examples/models/mixed_value.py
47+
:language: python
48+
49+
50+
:class:`~django_enum.fields.EnumField` will determine the most appropriate database column type to
51+
store the enumeration by trying each of the supported primitive types in order and selecting the
52+
first one that is symmetrically coercible to and from each enumeration value. ``None`` values are
53+
allowed and do not take part in the primitive type selection. In the above example, the database
54+
column type would default to a string.
55+
56+
.. note::
57+
58+
If none of the supported primitive types are symmetrically coercible
59+
:class:`~django_enum.fields.EnumField` will not be able to determine an appropriate column
60+
type and a :exc:`ValueError` will be raised.
61+
62+
In these cases, or to override the primitive type selection made by
63+
:class:`~django_enum.fields.EnumField`, pass the ``primitive`` parameter. It may be necessary to
64+
extend one of the supported primitives to make it coercible. It may also be necessary
65+
to override the :class:`enum.Enum` class's :meth:`~enum.Enum._missing_` method:
66+
67+
.. literalinclude:: ../../tests/examples/mixed_value_example.py
68+
:language: python
69+
:lines: 4-
70+
71+
In the above case since ``None`` is an enumeration value, :class:`~django_enum.fields.EnumField`
72+
will automatically set null=True on the model field.
73+
74+
The above yields::
75+
76+
obj.eccentric_str=<MixedValueEnum.NONE: None>
77+
obj.eccentric_float=<MixedValueEnum.NONE: None>
78+
obj.eccentric_str=<MixedValueEnum.VAL1: 1>
79+
obj.eccentric_float=<MixedValueEnum.VAL1: 1>
80+
obj.eccentric_str=<MixedValueEnum.VAL2: '2.0'>
81+
obj.eccentric_float=<MixedValueEnum.VAL2: '2.0'>
82+
obj.eccentric_str=<MixedValueEnum.VAL3: 3.0>
83+
obj.eccentric_float=<MixedValueEnum.VAL3: 3.0>
84+
obj.eccentric_str=<MixedValueEnum.VAL4: Decimal('4.5')>
85+
obj.eccentric_float=<MixedValueEnum.VAL4: Decimal('4.5')>
86+
87+
Custom Enum Value Types
88+
=======================
89+
90+
.. warning::
91+
There is almost certainly a better way to do what you might be trying to do by writing a custom
92+
enumeration value - for example consider using :doc:`enum-properties:index` to make your
93+
enumeration types more robust by pushing more of this functionality on the :class:`enum.Enum`
94+
class itself.
95+
96+
If you must use a custom value type, you can by specifying a symmetrically coercible primitive type.
97+
For example Path is already symmetrically coercible to str so this works:
98+
99+
.. literalinclude:: ../../tests/examples/models/path_value.py
100+
:language: python
101+
102+
103+
A fully custom value might look like the following contrived example:
104+
105+
.. literalinclude:: ../../tests/examples/models/custom_value.py
106+
:language: python

0 commit comments

Comments
 (0)