Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to support Django 4 #3

Merged
merged 1 commit into from
May 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ In your :code:`models.py`:
.. code-block:: python

from django.db import models
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _
from r_django_essentials.fields import Enum

class MyProcess(models.Model):
Expand Down
1 change: 0 additions & 1 deletion r_django_essentials/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
default_app_config = 'r_django_essentials.apps.RaphendyrEssentialsConfig'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name='django-essentials',
version='1.5.0',
version='1.5.1',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could jump to version 1.6 since we are targeting an all new Django LTS version.

description='Some essential tools when working with any Django project',
long_description=long_description,
keywords='django',
Expand Down Expand Up @@ -55,6 +55,6 @@
include_package_data = True,

install_requires=[
'Django >= 3.2, <4',
'Django >= 3.2, <5',
],
)