Skip to content

Commit

Permalink
Merge pull request #22 from jeromelebleu/drop-django20
Browse files Browse the repository at this point in the history
Drop support of Django 2.0 and 2.1
  • Loading branch information
stephrdev committed Aug 6, 2021
2 parents 5e093ce + 0b870a7 commit 585662c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ __pycache__/
*~

.cache
.coverage
.pytest_cache
*.sqlite3
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ and some Django template tags to help you render your forms to HTML.
Requirements
------------

django-tapeforms supports Python 3 only and requires at least Django 2.
django-tapeforms supports Python 3 only and requires at least Django 2.2.
No other dependencies are required.


Expand Down
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Installation
============

django-tapeforms supports Python 3 only and requires at least Django 1.11 (because
of the template based widget rendering). No other dependencies are required.
django-tapeforms supports Python 3 only and requires at least Django 2.2.
No other dependencies are required.

To start, simply install the latest stable package using the command

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ include = ["LICENSE.rst"]
python = ">=3.6,<4"
importlib-metadata = {version = "*", python = "<3.8"}

Django = ">=2"
Django = ">=2.2"
Sphinx = {version = ">=3.5", optional = true}

[tool.poetry.dev-dependencies]
Expand Down
4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
isolated_build = true
envlist = py{36,37,38,39}-django{20,21,22,30,31,32}
envlist = py{36,37,38,39}-django{22,30,31,32}

[gh-actions]
python =
Expand All @@ -12,8 +12,6 @@ python =
[testenv]
setenv = PYTHONPATH={toxinidir}
deps =
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
Expand Down

0 comments on commit 585662c

Please sign in to comment.