Skip to content

Commit bef1758

Browse files
committed
Merge branch 'release/2.2'
* release/2.2: bumpversion 2.2 updates travis drop support django<3 start version 2.2a
2 parents 0aeb0a3 + b3a38a1 commit bef1758

File tree

6 files changed

+21
-17
lines changed

6 files changed

+21
-17
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ __pycache__
2525
.testmondata
2626
Pipfile.lock
2727
poetry.lock
28+
pyproject.toml

.travis.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,7 @@ services:
1818

1919

2020
env:
21-
- DJANGO=1.11 DB=pg
22-
- DJANGO=2.1 DB=pg
23-
- DJANGO=2.2 DB=pg
2421
- DJANGO=3.0 DB=pg
25-
26-
- DJANGO=1.11 DB=mysql
27-
- DJANGO=2.1 DB=mysql
28-
- DJANGO=2.2 DB=mysql
2922
- DJANGO=3.0 DB=mysql
3023

3124

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 supports 1.11.x, 2.1.x, 2.2.x, 3.x
16+
- >=2.2 supports 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.1.1"
4+
VERSION = __version__ = "2.2"
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)