Skip to content

Commit c5e8b58

Browse files
committed
drop support django<3
1 parent 51bf717 commit c5e8b58

File tree

4 files changed

+20
-10
lines changed

4 files changed

+20
-10
lines changed

CHANGES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Release 2.2
2+
-------------
3+
* drop suppot django<3.0
4+
* drop suppot Python<3.6
5+
6+
17
Release 2.1.1
28
-------------
39
* fixes packaging

README.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ Django Concurrency
1010

1111
django-concurrency is an optimistic lock [1]_ implementation for Django.
1212

13-
Supported Django versions: 1.11.x, 2.1.x, 2.2.x, 3.x
13+
Supported Django versions:
14+
15+
- <=2.1.1 1.11.x, 2.1.x, 2.2.x, 3.x
16+
- >=2.2 3.x
17+
1418

1519
It prevents users from doing concurrent editing in Django both from UI and from a
1620
django command.

src/concurrency/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__author__ = 'sax'
22
default_app_config = 'concurrency.apps.ConcurrencyConfig'
33

4-
VERSION = __version__ = "2.2"
4+
VERSION = __version__ = "2.2a"
55
NAME = 'django-concurrency'

tox.ini

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[tox]
2-
envlist = d{111,21}-py{35,36,37}-{pg,sqlite,mysql}
3-
d{22,30}-py{36,37,38}-{pg,sqlite,mysql}
2+
envlist = d{30}-py{36,37,38}-{pg,sqlite,mysql}
43

54

65
[pytest]
@@ -43,22 +42,23 @@ setenv =
4342

4443

4544
deps =
46-
django-reversion>=3.0.5
45+
django-reversion
4746
django-webtest
4847
mock
4948
pytest
5049
pytest-cov
5150
pytest-django
5251
pytest-echo
5352
pytest-pythonpath
54-
py{27,34,35,36,37,38}-pg: psycopg2-binary
53+
; py{27,34,35,36,37,38}-pg:
54+
psycopg2-binary
5555
pypy-pg: psycopg2cffi
5656
mysql: mysqlclient
5757
docs: -rdocs/requirements.pip
58-
d111: django>=1.11,<1.12
59-
d20: django>=2.0,<2.1
60-
d21: django>=2.1,<2.2
61-
d22: django>=2.2,<2.3
58+
; d111: django>=1.11,<1.12
59+
; d20: django>=2.0,<2.1
60+
; d21: django>=2.1,<2.2
61+
; d22: django>=2.2,<2.3
6262
d30: django>=3.0,<3.1
6363

6464

0 commit comments

Comments
 (0)