wagtail 6.3.3__py3-none-any.whl → 6.3.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25,6 +25,7 @@
25
25
  data-action="w-dismissible#toggle"
26
26
  {% if dismissible_value %}data-w-dismissible-value-param="{{ dismissible_value }}"{% endif %}
27
27
  data-w-upgrade-target="dismiss"
28
+ aria-label="{% trans 'Close' %}"
28
29
  class="w-ml-auto w-flex w-items-center w-justify-center w-bg-transparent w-rounded-full w-p-0 w-w-8 w-h-8
29
30
  w-text-current
30
31
  w-border
@@ -78,6 +78,7 @@ class TestUpgradeNotificationPanel(WagtailTestUtils, TestCase):
78
78
  )
79
79
  toggle = soup.select_one("[data-action='w-dismissible#toggle']")
80
80
  self.assertIsNotNone(toggle)
81
+ self.assertEqual(toggle.get("aria-label"), "Close")
81
82
  self.assertIsNone(toggle.get(self.ATTR_LAST_DISMISSED_VALUE))
82
83
 
83
84
  @override_settings(WAGTAIL_ENABLE_UPDATE_CHECK=False)
@@ -115,6 +116,7 @@ class TestUpgradeNotificationPanel(WagtailTestUtils, TestCase):
115
116
  )
116
117
  toggle = soup.select_one("[data-action='w-dismissible#toggle']")
117
118
  self.assertIsNotNone(toggle)
119
+ self.assertEqual(toggle.get("aria-label"), "Close")
118
120
  self.assertIsNone(toggle.get(self.ATTR_LAST_DISMISSED_VALUE))
119
121
 
120
122
  def test_render_html_dismissed_version(self):
@@ -140,6 +142,7 @@ class TestUpgradeNotificationPanel(WagtailTestUtils, TestCase):
140
142
  )
141
143
  toggle = soup.select_one("[data-action='w-dismissible#toggle']")
142
144
  self.assertIsNotNone(toggle)
145
+ self.assertEqual(toggle.get("aria-label"), "Close")
143
146
  self.assertEqual(
144
147
  toggle.get(self.ATTR_LAST_DISMISSED_VALUE),
145
148
  "6.2.2",
@@ -1,8 +1,23 @@
1
1
  # Generated by Django 4.2.1 on 2023-06-21 11:44
2
2
 
3
+ from django import VERSION as DJANGO_VERSION
3
4
  from django.db import migrations, models
4
5
 
5
6
 
7
+ check_constraint_condition = models.Q(
8
+ ("permission__isnull", False),
9
+ ("permission_type__isnull", False),
10
+ _connector="OR",
11
+ )
12
+
13
+ check_constraint_kwargs = {"name": "permission_or_permission_type_not_null"}
14
+
15
+ if DJANGO_VERSION >= (5, 1):
16
+ check_constraint_kwargs["condition"] = check_constraint_condition
17
+ else:
18
+ check_constraint_kwargs["check"] = check_constraint_condition
19
+
20
+
6
21
  class Migration(migrations.Migration):
7
22
 
8
23
  dependencies = [
@@ -16,14 +31,7 @@ class Migration(migrations.Migration):
16
31
  ),
17
32
  migrations.AddConstraint(
18
33
  model_name="grouppagepermission",
19
- constraint=models.CheckConstraint(
20
- check=models.Q(
21
- ("permission__isnull", False),
22
- ("permission_type__isnull", False),
23
- _connector="OR",
24
- ),
25
- name="permission_or_permission_type_not_null",
26
- ),
34
+ constraint=models.CheckConstraint(**check_constraint_kwargs),
27
35
  ),
28
36
  migrations.AddConstraint(
29
37
  model_name="grouppagepermission",
@@ -5,7 +5,7 @@ from django.db.models.functions.datetime import Extract as ExtractDate
5
5
  from django.db.models.functions.datetime import ExtractYear
6
6
  from django.db.models.lookups import Lookup
7
7
  from django.db.models.query import QuerySet
8
- from django.db.models.sql.where import SubqueryConstraint, WhereNode
8
+ from django.db.models.sql.where import WhereNode
9
9
 
10
10
  from wagtail.search.index import class_is_indexed, get_indexed_models
11
11
  from wagtail.search.query import MATCH_ALL, PlainText
@@ -179,11 +179,6 @@ class BaseSearchQueryCompiler:
179
179
  field_attname, lookup, value, check_only=check_only
180
180
  )
181
181
 
182
- elif isinstance(where_node, SubqueryConstraint):
183
- raise FilterError(
184
- "Could not apply filter on search results: Subqueries are not allowed."
185
- )
186
-
187
182
  elif isinstance(where_node, WhereNode):
188
183
  # Get child filters
189
184
  connector = where_node.connector
@@ -0,0 +1,89 @@
1
+ Metadata-Version: 2.4
2
+ Name: wagtail
3
+ Version: 6.3.4
4
+ Summary: A Django content management system.
5
+ Home-page: https://wagtail.org/
6
+ Author: Wagtail core team + contributors
7
+ Author-email: hello@wagtail.org
8
+ License: BSD
9
+ Project-URL: Changelog, https://github.com/wagtail/wagtail/blob/main/CHANGELOG.txt
10
+ Project-URL: Documentation, https://docs.wagtail.org
11
+ Project-URL: Source, https://github.com/wagtail/wagtail
12
+ Project-URL: Tracker, https://github.com/wagtail/wagtail/issues
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Environment :: Web Environment
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: License :: OSI Approved :: BSD License
17
+ Classifier: Operating System :: OS Independent
18
+ Classifier: Programming Language :: Python
19
+ Classifier: Programming Language :: Python :: 3
20
+ Classifier: Programming Language :: Python :: 3.9
21
+ Classifier: Programming Language :: Python :: 3.10
22
+ Classifier: Programming Language :: Python :: 3.11
23
+ Classifier: Programming Language :: Python :: 3.12
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Classifier: Framework :: Django
26
+ Classifier: Framework :: Django :: 4.2
27
+ Classifier: Framework :: Django :: 5.0
28
+ Classifier: Framework :: Django :: 5.1
29
+ Classifier: Framework :: Wagtail
30
+ Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
31
+ Requires-Python: >=3.9
32
+ License-File: LICENSE
33
+ Requires-Dist: Django<6.0,>=4.2
34
+ Requires-Dist: django-modelcluster<7.0,>=6.2.1
35
+ Requires-Dist: django-permissionedforms<1.0,>=0.1
36
+ Requires-Dist: django-taggit<6.2,>=5.0
37
+ Requires-Dist: django-treebeard<5.0,>=4.5.1
38
+ Requires-Dist: djangorestframework<4.0,>=3.15.1
39
+ Requires-Dist: django-filter>=23.3
40
+ Requires-Dist: draftjs_exporter<6.0,>=2.1.5
41
+ Requires-Dist: Pillow<12.0.0,>=9.1.0
42
+ Requires-Dist: beautifulsoup4<4.13,>=4.8
43
+ Requires-Dist: Willow[heif]<2,>=1.8.0
44
+ Requires-Dist: requests<3.0,>=2.11.1
45
+ Requires-Dist: l18n>=2018.5
46
+ Requires-Dist: openpyxl<4.0,>=3.0.10
47
+ Requires-Dist: anyascii>=0.1.5
48
+ Requires-Dist: telepath<1,>=0.3.1
49
+ Requires-Dist: laces<0.2,>=0.1
50
+ Provides-Extra: testing
51
+ Requires-Dist: python-dateutil>=2.7; extra == "testing"
52
+ Requires-Dist: Jinja2<3.2,>=3.0; extra == "testing"
53
+ Requires-Dist: boto3<2,>=1.28; extra == "testing"
54
+ Requires-Dist: freezegun>=0.3.8; extra == "testing"
55
+ Requires-Dist: azure-mgmt-cdn<13.0,>=12.0; extra == "testing"
56
+ Requires-Dist: azure-mgmt-frontdoor<1.1,>=1.0; extra == "testing"
57
+ Requires-Dist: django-pattern-library>=0.7; extra == "testing"
58
+ Requires-Dist: coverage>=3.7.0; extra == "testing"
59
+ Requires-Dist: doc8==0.8.1; extra == "testing"
60
+ Requires-Dist: ruff==0.1.5; extra == "testing"
61
+ Requires-Dist: semgrep==1.40.0; extra == "testing"
62
+ Requires-Dist: curlylint==0.13.1; extra == "testing"
63
+ Requires-Dist: djhtml==3.0.6; extra == "testing"
64
+ Requires-Dist: polib<2.0,>=1.1; extra == "testing"
65
+ Requires-Dist: factory-boy>=3.2; extra == "testing"
66
+ Requires-Dist: tblib<3.0,>=2.0; extra == "testing"
67
+ Provides-Extra: docs
68
+ Requires-Dist: pyenchant<4,>=3.1.1; extra == "docs"
69
+ Requires-Dist: sphinxcontrib-spelling<8,>=7; extra == "docs"
70
+ Requires-Dist: Sphinx>=7.3; extra == "docs"
71
+ Requires-Dist: sphinx-autobuild>=0.6.0; extra == "docs"
72
+ Requires-Dist: sphinx-wagtail-theme==6.4.0; extra == "docs"
73
+ Requires-Dist: myst_parser==2.0.0; extra == "docs"
74
+ Dynamic: author
75
+ Dynamic: author-email
76
+ Dynamic: classifier
77
+ Dynamic: description
78
+ Dynamic: home-page
79
+ Dynamic: license
80
+ Dynamic: license-file
81
+ Dynamic: project-url
82
+ Dynamic: provides-extra
83
+ Dynamic: requires-dist
84
+ Dynamic: requires-python
85
+ Dynamic: summary
86
+
87
+ Wagtail is an open source content management system built on Django, with a strong community and commercial support. It’s focused on user experience, and offers precise control for designers and developers.
88
+
89
+ For more details, see https://wagtail.org, https://docs.wagtail.org and https://github.com/wagtail/wagtail/.
@@ -1,4 +1,4 @@
1
- wagtail/__init__.py,sha256=iPUJo4Z0gCm0DGzRtMq9i10svLFA31wPWOz60HwDGxI,724
1
+ wagtail/__init__.py,sha256=7GoiIS8TwLg8dvpp7EAt-wem_gR5D4aEttlmmohImn8,724
2
2
  wagtail/apps.py,sha256=38kXTdHoQzFnpUqDNxFpsqn2dut4V0u9rLOkhqCoYkc,713
3
3
  wagtail/compat.py,sha256=L41FhlX4xy5KgTdJ63smtM78mtKf1mxkPeOs8kyOwS0,538
4
4
  wagtail/coreutils.py,sha256=8wQC7LCRJ3dCILhpAsODCDCxlU0x--6UXDVX4Tx3gnQ,20417
@@ -356,7 +356,7 @@ wagtail/admin/rich_text/converters/html_to_contentstate.py,sha256=W0l9O-ZpxJkzRF
356
356
  wagtail/admin/rich_text/editors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
357
357
  wagtail/admin/rich_text/editors/draftail/__init__.py,sha256=IsmQYvx0YQuhiW_KqXq07iXPZg63NV1VOwXBL6f8TUY,3594
358
358
  wagtail/admin/rich_text/editors/draftail/features.py,sha256=X3LZhvlSqQA9GTXAdKi0PthdiIxL-InuiuLl_1AdVns,2593
359
- wagtail/admin/static/wagtailadmin/css/core.css,sha256=YYwV7bElbqjbI0HnTNw_Qg9wyUZ3DvnuOK_flB6SHp0,275995
359
+ wagtail/admin/static/wagtailadmin/css/core.css,sha256=X831nK84rvCR8LRGmnnlsDqTguQK5tfYvG4aUfgcH-c,276070
360
360
  wagtail/admin/static/wagtailadmin/css/core.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
361
  wagtail/admin/static/wagtailadmin/css/panels/draftail.css,sha256=y7FM00LtDC9CZ_9V4XySg04pXty5obRipdSw7YRT0YM,24614
362
362
  wagtail/admin/static/wagtailadmin/css/panels/draftail.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -496,7 +496,7 @@ wagtail/admin/templates/wagtailadmin/home/locked_pages.html,sha256=58AUxBtLlOlOv
496
496
  wagtail/admin/templates/wagtailadmin/home/recent_edits.html,sha256=cCrUkVByHsa9FMZmoyZTfdnxrihuSw_FNcmsrws-fr4,3683
497
497
  wagtail/admin/templates/wagtailadmin/home/site_summary.html,sha256=NnpY7RGV8Qid0GlBY8wsBS4o7JTBvkhRUyAMBFXoDHY,366
498
498
  wagtail/admin/templates/wagtailadmin/home/site_summary_pages.html,sha256=bWbEvL9ue-j7qUwDSS_iEZlGB_XSVk5zxwlqtQP0lSY,466
499
- wagtail/admin/templates/wagtailadmin/home/upgrade_notification.html,sha256=-qjO2hhvuGuRNHPTVEDPIdOKL0bLLBPtUIj_O13u2ik,2006
499
+ wagtail/admin/templates/wagtailadmin/home/upgrade_notification.html,sha256=xGd54pMpmSWhBsbrf6waLf7SjeMag-qZCF3-sRziP7k,2047
500
500
  wagtail/admin/templates/wagtailadmin/home/user_objects_in_workflow_moderation.html,sha256=oyouVaaxCMAmGgcfRb2ivp_Djydr61arn671UeOqUXg,3697
501
501
  wagtail/admin/templates/wagtailadmin/home/whats_new_in_wagtail_version.html,sha256=tE8H2w-steUxH02dNJK6Frkc0b06EsxQ_hnJWGaXiJ8,1480
502
502
  wagtail/admin/templates/wagtailadmin/home/workflow_objects_to_moderate.html,sha256=zpKNhigoWR9VWSB14Epg9h-dZ6dpiI2lVaBdAnzHLHY,6668
@@ -879,7 +879,7 @@ wagtail/admin/tests/test_reports_views.py,sha256=oFvzx7lltLCpHZxYW41Z3eQjEPn5Acl
879
879
  wagtail/admin/tests/test_rich_text.py,sha256=fp1LhnUAKT03M3BelxkIwTnbEE4yB29llFTJlEa_-TU,22155
880
880
  wagtail/admin/tests/test_site_summary.py,sha256=d3kWKFPZYoEXgchpOrZe8zSerhvn9afQar-NGrXlBRA,3148
881
881
  wagtail/admin/tests/test_templatetags.py,sha256=2PMUeHi5t543Bw5nDWK1RYi-OLgKwoqsLbmIPYLH3Uk,40029
882
- wagtail/admin/tests/test_upgrade_notification.py,sha256=jlGPoqFA6E77tXlYChIVoiBOwwDkBT7eVme7vKqtNLg,5802
882
+ wagtail/admin/tests/test_upgrade_notification.py,sha256=GnUZ5Nugp9SHtefdGNIUKA1La7P2DXu5Z1-UkwGkcRI,5990
883
883
  wagtail/admin/tests/test_userbar.py,sha256=9u4WjEhU7iGDLinfG_-40tNKjeKEx31OMMD7FhNepV8,18644
884
884
  wagtail/admin/tests/test_views.py,sha256=A8kEpc1csb9Ocu02l7mkEThNOgwz8g8G7RWdWcb3IA0,8686
885
885
  wagtail/admin/tests/test_views_generic.py,sha256=iD75NrZunwgPkvkdkCC4wQrbPihkA0cEiW-OJY2birI,3403
@@ -3039,7 +3039,7 @@ wagtail/migrations/0083_workflowcontenttype.py,sha256=5IB4BVgGB2ndtZM8GsDl0q6GdO
3039
3039
  wagtail/migrations/0084_add_default_page_permissions.py,sha256=ZTPv9gl0BETw1hcZHPyy6IXnclDfpRSCmBZLbaFAAjY,737
3040
3040
  wagtail/migrations/0085_add_grouppagepermission_permission.py,sha256=FCVddrLeu8m2F6T_h8mbXYb-ps1K1MoDYN_E1mMRLYU,1605
3041
3041
  wagtail/migrations/0086_populate_grouppagepermission_permission.py,sha256=Bb3JAxZGfiQ_Lij7izu021smOLLmfwHLN0tx2i8a8CU,3102
3042
- wagtail/migrations/0087_alter_grouppagepermission_unique_together_and_more.py,sha256=7tANrGnVzGAiuyu1e3BAjMFAQ_V-2nv_KU-uAO__mp8,1309
3042
+ wagtail/migrations/0087_alter_grouppagepermission_unique_together_and_more.py,sha256=pHcO2I6ysk6oKZe6GHbMDGBevukkWqYP1HKv9cA2IAU,1497
3043
3043
  wagtail/migrations/0088_fix_log_entry_json_timestamps.py,sha256=5a_AH0qM0X8YDt9IIdnOs-lCs7y14n4-dos3rYuQC4Q,6598
3044
3044
  wagtail/migrations/0089_log_entry_data_json_null_to_object.py,sha256=BsgLCgUOzcu43WsEYGz-3lbGY2cxUuo7xcGQOj0ULgQ,1836
3045
3045
  wagtail/migrations/0090_remove_grouppagepermission_permission_type.py,sha256=KB5XHreJBcK7vXRVzffeNlidNQjQf0FmLb9SCPa0vWI,1074
@@ -3103,7 +3103,7 @@ wagtail/search/queryset.py,sha256=xwsUc1FoodmIru4l8bZEIsYtfR-GnDEjizN6jLmkZBI,10
3103
3103
  wagtail/search/signal_handlers.py,sha256=Md4dhmwLF7kX7YLG-MsqTLQ6NdfkFIavBJ9n5OsUIgA,956
3104
3104
  wagtail/search/utils.py,sha256=onx_ym1p0kMBggaormbztwM-T0lXvnTG5vyOuyDnMQ0,6075
3105
3105
  wagtail/search/backends/__init__.py,sha256=nJEc435WnprL13v7OwcUCyHz0CTXMCMar9xTRqn1rH8,3455
3106
- wagtail/search/backends/base.py,sha256=EhedKzF_2niqc7xIH8HmMdykoDXfz7EZ6thaIWUbMi0,16712
3106
+ wagtail/search/backends/base.py,sha256=ClbDhmZhWy1PT_7O0ZHQ8f8fSJ-Ks0uiLyO6GclgA_I,16501
3107
3107
  wagtail/search/backends/elasticsearch7.py,sha256=CbHEAGgaQK82wYez_2H56-G9QdSPQp1FW1ABynez0YM,41361
3108
3108
  wagtail/search/backends/elasticsearch8.py,sha256=n3y05d_atzbnkaM4F1BXp3OhayE-J6uzfggYBdw2rBo,3750
3109
3109
  wagtail/search/backends/database/__init__.py,sha256=u8dKGRONweefcHoIlCIJgxpU5DgWAARDz1sefSUq-Rw,1727
@@ -4002,9 +4002,9 @@ wagtail/utils/urlpatterns.py,sha256=RDhVScxdm-RV4HSMjWElyrbEoTPsXu841_SKMgoFKtY,
4002
4002
  wagtail/utils/utils.py,sha256=nQhfy-fOiZfUFr67kTX4nF_2VVH7_MDtjTDOzZdpPTE,1407
4003
4003
  wagtail/utils/version.py,sha256=jYCDKIGJD3bZHTpgXMXu14oSBArQnf2WVU979D8V4b0,1552
4004
4004
  wagtail/utils/widgets.py,sha256=ibAvxHCjNw06bMlTD7wvrwmGEMNS3NzrnSKREGfPF44,1775
4005
- wagtail-6.3.3.dist-info/LICENSE,sha256=0aiL7_RJ2YkOjscmRI7opwmuURrY6h8MR0B24nrdRQU,1512
4006
- wagtail-6.3.3.dist-info/METADATA,sha256=9FJHuQYiZZAWlz2vdTYBzJhFjCwcF4HL1PJg_Btj2lo,3682
4007
- wagtail-6.3.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
4008
- wagtail-6.3.3.dist-info/entry_points.txt,sha256=R14Z0xKoufNcDaku0EWDKM-K8J4ap0EImO8C-df8HVM,53
4009
- wagtail-6.3.3.dist-info/top_level.txt,sha256=zcKgvuRTi0gSgVzJ1qMoERCwhQ_i0n9bkyxza3oh9as,8
4010
- wagtail-6.3.3.dist-info/RECORD,,
4005
+ wagtail-6.3.4.dist-info/licenses/LICENSE,sha256=0aiL7_RJ2YkOjscmRI7opwmuURrY6h8MR0B24nrdRQU,1512
4006
+ wagtail-6.3.4.dist-info/METADATA,sha256=OjgK7qg3wPuytDYORaxLjvgOqZ-_ol19cONRwMyNqUs,3786
4007
+ wagtail-6.3.4.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
4008
+ wagtail-6.3.4.dist-info/entry_points.txt,sha256=R14Z0xKoufNcDaku0EWDKM-K8J4ap0EImO8C-df8HVM,53
4009
+ wagtail-6.3.4.dist-info/top_level.txt,sha256=zcKgvuRTi0gSgVzJ1qMoERCwhQ_i0n9bkyxza3oh9as,8
4010
+ wagtail-6.3.4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.38.4)
2
+ Generator: setuptools (79.0.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,77 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: wagtail
3
- Version: 6.3.3
4
- Summary: A Django content management system.
5
- Home-page: https://wagtail.org/
6
- Author: Wagtail core team + contributors
7
- Author-email: hello@wagtail.org
8
- License: BSD
9
- Project-URL: Changelog, https://github.com/wagtail/wagtail/blob/main/CHANGELOG.txt
10
- Project-URL: Documentation, https://docs.wagtail.org
11
- Project-URL: Source, https://github.com/wagtail/wagtail
12
- Project-URL: Tracker, https://github.com/wagtail/wagtail/issues
13
- Classifier: Development Status :: 5 - Production/Stable
14
- Classifier: Environment :: Web Environment
15
- Classifier: Intended Audience :: Developers
16
- Classifier: License :: OSI Approved :: BSD License
17
- Classifier: Operating System :: OS Independent
18
- Classifier: Programming Language :: Python
19
- Classifier: Programming Language :: Python :: 3
20
- Classifier: Programming Language :: Python :: 3.9
21
- Classifier: Programming Language :: Python :: 3.10
22
- Classifier: Programming Language :: Python :: 3.11
23
- Classifier: Programming Language :: Python :: 3.12
24
- Classifier: Programming Language :: Python :: 3.13
25
- Classifier: Framework :: Django
26
- Classifier: Framework :: Django :: 4.2
27
- Classifier: Framework :: Django :: 5.0
28
- Classifier: Framework :: Django :: 5.1
29
- Classifier: Framework :: Wagtail
30
- Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
31
- Requires-Python: >=3.9
32
- License-File: LICENSE
33
- Requires-Dist: Django (<6.0,>=4.2)
34
- Requires-Dist: django-modelcluster (<7.0,>=6.2.1)
35
- Requires-Dist: django-permissionedforms (<1.0,>=0.1)
36
- Requires-Dist: django-taggit (<6.2,>=5.0)
37
- Requires-Dist: django-treebeard (<5.0,>=4.5.1)
38
- Requires-Dist: djangorestframework (<4.0,>=3.15.1)
39
- Requires-Dist: django-filter (<25,>=23.3)
40
- Requires-Dist: draftjs-exporter (<6.0,>=2.1.5)
41
- Requires-Dist: Pillow (<12.0.0,>=9.1.0)
42
- Requires-Dist: beautifulsoup4 (<4.13,>=4.8)
43
- Requires-Dist: Willow[heif] (<2,>=1.8.0)
44
- Requires-Dist: requests (<3.0,>=2.11.1)
45
- Requires-Dist: l18n (>=2018.5)
46
- Requires-Dist: openpyxl (<4.0,>=3.0.10)
47
- Requires-Dist: anyascii (>=0.1.5)
48
- Requires-Dist: telepath (<1,>=0.3.1)
49
- Requires-Dist: laces (<0.2,>=0.1)
50
- Provides-Extra: docs
51
- Requires-Dist: pyenchant (<4,>=3.1.1) ; extra == 'docs'
52
- Requires-Dist: sphinxcontrib-spelling (<8,>=7) ; extra == 'docs'
53
- Requires-Dist: Sphinx (>=7.3) ; extra == 'docs'
54
- Requires-Dist: sphinx-autobuild (>=0.6.0) ; extra == 'docs'
55
- Requires-Dist: sphinx-wagtail-theme (==6.4.0) ; extra == 'docs'
56
- Requires-Dist: myst-parser (==2.0.0) ; extra == 'docs'
57
- Provides-Extra: testing
58
- Requires-Dist: python-dateutil (>=2.7) ; extra == 'testing'
59
- Requires-Dist: Jinja2 (<3.2,>=3.0) ; extra == 'testing'
60
- Requires-Dist: boto3 (<2,>=1.28) ; extra == 'testing'
61
- Requires-Dist: freezegun (>=0.3.8) ; extra == 'testing'
62
- Requires-Dist: azure-mgmt-cdn (<13.0,>=12.0) ; extra == 'testing'
63
- Requires-Dist: azure-mgmt-frontdoor (<1.1,>=1.0) ; extra == 'testing'
64
- Requires-Dist: django-pattern-library (>=0.7) ; extra == 'testing'
65
- Requires-Dist: coverage (>=3.7.0) ; extra == 'testing'
66
- Requires-Dist: doc8 (==0.8.1) ; extra == 'testing'
67
- Requires-Dist: ruff (==0.1.5) ; extra == 'testing'
68
- Requires-Dist: semgrep (==1.40.0) ; extra == 'testing'
69
- Requires-Dist: curlylint (==0.13.1) ; extra == 'testing'
70
- Requires-Dist: djhtml (==3.0.6) ; extra == 'testing'
71
- Requires-Dist: polib (<2.0,>=1.1) ; extra == 'testing'
72
- Requires-Dist: factory-boy (>=3.2) ; extra == 'testing'
73
- Requires-Dist: tblib (<3.0,>=2.0) ; extra == 'testing'
74
-
75
- Wagtail is an open source content management system built on Django, with a strong community and commercial support. It’s focused on user experience, and offers precise control for designers and developers.
76
-
77
- For more details, see https://wagtail.org, https://docs.wagtail.org and https://github.com/wagtail/wagtail/.