Skip to content
This repository was archived by the owner on May 12, 2024. It is now read-only.

Commit

Permalink
chore: drop support for old versions
Browse files Browse the repository at this point in the history
Fixes #163
Fixes #164

BREAKING CHANGE: Drop support for Python 3.5 and Django <2.2
  • Loading branch information
browniebroke committed Nov 9, 2020
1 parent b80f145 commit bb729bd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 43 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,34 +47,13 @@ jobs:
fail-fast: false
matrix:
versions:
- python: 3.5
django: ">=1.11,<2.0"
- python: 3.5
django: ">=2.0,<2.1"
- python: 3.5
django: ">=2.1,<2.2"
- python: 3.5
django: ">=2.2,<3.0"

- python: 3.6
django: ">=1.11,<2.0"
- python: 3.6
django: ">=2.0,<2.1"
- python: 3.6
django: ">=2.1,<2.2"
- python: 3.6
django: ">=2.2,<3.0"
- python: 3.6
django: ">=3.0,<3.1"
- python: 3.6
django: ">=3.1,<3.2"

- python: 3.7
django: ">=1.11,<2.0"
- python: 3.7
django: ">=2.0,<2.1"
- python: 3.7
django: ">=2.1,<2.2"
- python: 3.7
django: ">=2.2,<3.0"
- python: 3.7
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ This version **does not** include any static files, it's using the TinyMCE from

## Compatibility

- **Python**: 3.5-3.8
- **Django**: 1.11-3.1
- **Python**: 3.6-3.8
- **Django**: 2.2-3.1

## Quick Start

Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ The main difference with the original fork is that it **does not** include any s

## Compatibility

- **Python**: 3.5-3.8
- **Django**: 1.11-3.1
- **Python**: 3.6-3.8
- **Django**: 2.2-3.1

## License

Expand Down
4 changes: 0 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,10 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Framework :: Django
Framework :: Django :: 1.11
Framework :: Django :: 2.0
Framework :: Django :: 2.1
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Expand Down
16 changes: 2 additions & 14 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,28 +1,16 @@
[tox]
envlist =
py{34,35,36,37}-dj{111,20,21,master}
py{36,37,38}-dj{22,30,31}
lint,docs

[travis:env]
DJANGO =
1.10: dj110
1.11: dj111
2.0: dj20
2.1: dj21
master: djmaster


[testenv]
commands = coverage run manage.py test test_tinymce
deps =
-rrequirements.txt
dj110: Django>=1.10,<1.11
dj111: Django>=1.11,<2.0
dj20: Django>=2.0,<2.1
dj21: Django>=2.1,<2.2
dj22: Django>=2.1,<3.0
dj30: Django>=3.0,<3.1
djmaster: https://github.com/django/django/archive/master.tar.gz
dj31: Django>=3.1,<3.2

[testenv:lint]
basepython = python3.6
Expand Down

0 comments on commit bb729bd

Please sign in to comment.