Skip to content

Commit

Permalink
feat: add support for Django 4.1 (#284)
Browse files Browse the repository at this point in the history
  • Loading branch information
browniebroke committed Aug 24, 2022
1 parent 9c1e2c0 commit fa03da9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -43,6 +43,8 @@ jobs:
django: "3.2"
- python: "3.8"
django: "4.0"
- python: "3.8"
django: "4.1"

- python: "3.9"
django: "2.2"
Expand All @@ -54,9 +56,15 @@ jobs:
django: "3.2"
- python: "3.9"
django: "4.0"
- python: "3.9"
django: "4.1"

- python: "3.10"
django: "3.2"
- python: "3.10"
django: "4.0"
- python: "3.10"
django: "4.1"

runs-on: ubuntu-latest
name: "Python ${{ matrix.versions.python }} - Django ${{ matrix.versions.django }}"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -42,7 +42,7 @@ This version **does not** include any static files, it's using the TinyMCE from
## Compatibility

- **Python**: 3.7-3.10
- **Django**: 2.2-4.0
- **Django**: 2.2-4.1

## Quick Start

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Expand Up @@ -7,7 +7,7 @@ The main difference with the original fork is that it **does not** include any s
## Compatibility

- **Python**: 3.7-3.10
- **Django**: 2.2-4.0
- **Django**: 2.2-4.1

## License

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Expand Up @@ -20,6 +20,7 @@ classifiers = [
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Editors",
Expand All @@ -33,7 +34,7 @@ packages = [

[tool.poetry.dependencies]
python = "^3.7"
Django = ">=2.2,<4.1"
Django = ">=2.2,<4.2"
pyenchant = { version = "^3.1", optional = true }

# Docs deps
Expand Down

0 comments on commit fa03da9

Please sign in to comment.