-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: github coverage action * Fix tests for Django 5 * Fix yaml syntac
- Loading branch information
Showing
10 changed files
with
22 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ dynamic = ["version"] | |
description = "Adds a form editor to the structure board of django CMS." | ||
readme = "README.rst" | ||
license.text = "BSD-3-Clause" | ||
requires-python = ">=3.10" | ||
requires-python = ">=3.9" | ||
authors = [ | ||
{ name = "fsbraun", email = "[email protected]" }, | ||
] | ||
|
@@ -24,22 +24,23 @@ classifiers = [ | |
"Framework :: Django CMS :: 3.8", | ||
"Framework :: Django CMS :: 3.9", | ||
"Framework :: Django CMS :: 4.0", | ||
"Framework :: Django CMS :: 4.1", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Internet :: WWW/HTTP", | ||
"Topic :: Internet :: WWW/HTTP :: Dynamic Content", | ||
"Topic :: Software Development", | ||
"Topic :: Software Development :: Libraries", | ||
] | ||
dependencies = [ | ||
"django-cms>=3.7", | ||
"django-cms>=3.10", | ||
"django-entangled", | ||
"Django>=3.2", | ||
"djangocms-attributes-field>=1", | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
tests/requirements/dj41_cms311.txt → tests/requirements/dj42_cms311.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
-r base.txt | ||
|
||
django-filer>=2.2 | ||
Django>=4.1,<4.2 | ||
Django>=4.2,<4.3 | ||
django-cms>=3.11,<3.12 |
2 changes: 1 addition & 1 deletion
2
tests/requirements/dj41_cms41.txt → tests/requirements/dj42_cms41.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
-r base.txt | ||
|
||
Django>=4.1,<4.2 | ||
Django>=4.2,<4.3 | ||
django-cms>=4.1,<4.2 | ||
djangocms-text-ckeditor | ||
djangocms-versioning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
-r base.txt | ||
|
||
Django>=5.0,<5.1 | ||
django-cms>=4.1,<4.2 | ||
djangocms-text-ckeditor | ||
djangocms-versioning |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters