Skip to content

Commit

Permalink
fix: Cap django requirement at <4 (#7182)
Browse files Browse the repository at this point in the history
* fix: Cap django requirement at <4

fixes issue #7179

* Change `4` to `4.0`
  • Loading branch information
marksweb committed Jan 17, 2022
1 parent 272d62c commit c6c2784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -6,7 +6,7 @@


REQUIREMENTS = [
'Django>=2.2',
'Django>=2.2,<4.0',
'django-classy-tags>=0.7.2',
'django-formtools>=2.1',
'django-treebeard>=4.3',
Expand Down

2 comments on commit c6c2784

@TiredFingers
Copy link

Choose a reason for hiding this comment

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

As I know we support Django 3.2 maximum. Is my information incorrect?

@marksweb
Copy link
Member Author

Choose a reason for hiding this comment

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

@TiredFingers That's right, so this ensures pip doesn't install above django 3.2 until we've introduced django 4 support.

Please sign in to comment.