You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Djangocms-installer djangocms command should install only working configurations with package versions requirement specified using == instead of >=.
Today, a djangocms mysite site is buggy due to django-cms/django-cms#6980
insert a text content (it seems important to do that)
publish it
Internal Server Error: ... treebeard.exceptions.NodeAlreadySaved: Attempted to add a tree node that is already in the database
Versions
Python 3.8.6
Django==3.1.7
django-cms==3.8.0
django-treebeard==4.5.1
Expected behaviour
django-treebeard==4.4
Actual behaviour
django-treebeard==4.5.1
Additional information
The problem is more general, djangocms-installer should install only working configurations,
with == specifications written in djangocms_installer/config/data.py file instead of >= specifications.
Here django-cms==3.8.0 was working with django-treebeard==4.4, but is no more working since django-treebeard is upgraded to 4.5.1.
The text was updated successfully, but these errors were encountered:
Description
Djangocms-installer
djangocms
command should install only working configurations with package versions requirement specified using==
instead of>=
.Today, a
djangocms mysite
site is buggy due to django-cms/django-cms#6980Steps to reproduce
Versions
Expected behaviour
Actual behaviour
Additional information
The problem is more general, djangocms-installer should install only working configurations,
with
==
specifications written in djangocms_installer/config/data.py file instead of>=
specifications.Here django-cms==3.8.0 was working with django-treebeard==4.4, but is no more working since django-treebeard is upgraded to 4.5.1.
The text was updated successfully, but these errors were encountered: