Skip to content

Commit 72666d2

Browse files
committed
Merge branch 'release/2.4'
2 parents 88e3a20 + 8672ac9 commit 72666d2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+325
-557
lines changed

.github/workflows/tests.yaml

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- develop
8+
pull_request:
9+
10+
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-python@v2
16+
17+
- name: Install dependencies
18+
run: |
19+
python -m pip install --upgrade pip tox
20+
- name: Lint with flake8
21+
run: |
22+
tox -e lint
23+
24+
test:
25+
runs-on: ubuntu-latest
26+
strategy:
27+
fail-fast: false
28+
matrix:
29+
python-version: [ "3.8", "3.9", "3.10"]
30+
django-version: [ "2.2", "3.2", "4.0"]
31+
db-engine: ["pg", "mysql"]
32+
env:
33+
PY_VER: ${{ matrix.python-version}}
34+
DJ_VER: ${{ matrix.django-version}}
35+
DBENGINE: ${{ matrix.db-engine}}
36+
MYSQL_USER: 'root'
37+
MYSQL_PASSWORD: 'root'
38+
39+
services:
40+
postgres:
41+
image: postgres
42+
env:
43+
POSTGRES_USER: postgres
44+
POSTGRES_PASSWORD: postgres
45+
POSTGRES_DB: concurrency
46+
ports:
47+
- 5432:5432
48+
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
49+
50+
# mysql:
51+
# image: mysql:5.7
52+
# env:
53+
# MYSQL_DATABASE: test_db
54+
# MYSQL_USER: user
55+
# MYSQL_PASSWORD: password
56+
# MYSQL_ROOT_PASSWORD: rootpassword
57+
# ports:
58+
# - 33306:3306
59+
# options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=5
60+
61+
steps:
62+
- uses: actions/checkout@v2
63+
64+
- name: Setup MySQL
65+
run: |
66+
sudo /etc/init.d/mysql start
67+
mysql -e 'CREATE DATABASE concurrency;' -uroot -proot
68+
mysql -e 'SHOW DATABASES;' -uroot -proot
69+
70+
- name: Set up Python ${{ matrix.python-version }}
71+
uses: actions/setup-python@v2
72+
with:
73+
python-version: ${{ matrix.python-version }}
74+
75+
- name: Install dependencies
76+
run: python -m pip install --upgrade pip tox
77+
78+
- name: Test with
79+
run: tox -e d${DJ_VER//.}-py${PY_VER//.}-${DBENGINE}
80+
81+
- uses: codecov/codecov-action@v1
82+
with:
83+
verbose: true

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ __pycache__
2626
Pipfile.lock
2727
poetry.lock
2828
pyproject.toml
29+
.venv/

.travis.yml

-45
This file was deleted.

CHANGES

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Release 2.4
2+
-----------
3+
* add support Django 4
4+
* add support Python 3.10
5+
6+
17
Release 2.3
28
-----------
39
* Removes code producing DeprecationError

Makefile

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ test:
2828

2929
lint:
3030
pre-commit run --all-files
31-
pipenv run isort -rc src/ --check-only
32-
pipenv run check-manifest
3331

3432
travis:
3533
docker run --privileged --name travis-debug -it -u travis travisci/ci-amethyst:packer-1512508255-986baf0 /bin/bash -l
@@ -48,6 +46,7 @@ fullclean:
4846

4947
docs: .mkbuilddir
5048
mkdir -p ${BUILDDIR}/docs
49+
rm -fr ${BUILDDIR}/docs/*
5150
sphinx-build -aE docs/ ${BUILDDIR}/docs
5251
ifdef BROWSE
5352
firefox ${BUILDDIR}/docs/index.html

Pipfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ sphinx-issues = "*"
2424
twine="*"
2525

2626
[requires]
27-
python_version = "3.6"
27+
python_version = "3.8"

README.rst

-6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@ Django Concurrency
1010

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

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-
18-
1913
It prevents users from doing concurrent editing in Django both from UI and from a
2014
django command.
2115

docs/_ext/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
from docutils.parsers.rst import Directive, directives
44
from sphinx import addnodes, roles
5+
from sphinx.errors import ExtensionError
56
from sphinx.util.console import bold
67
# RE for option descriptions without a '--' prefix
78
from sphinx.writers.html import HTMLTranslator
8-
from sphinx.errors import ExtensionError
99

1010
simple_option_desc_re = re.compile(
1111
r'([-_a-zA-Z0-9]+)(\s*.*?)(?=,\s+(?:/|-|--)|$)')

docs/api.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ examples
196196
197197
@disable_concurrency()
198198
def recover_view(self, request, version_id, extra_context=None):
199-
return super(ReversionConcurrentModelAdmin, self).recover_view(request,
199+
return super().recover_view(request,
200200
version_id,
201201
extra_context)
202202

docs/conf.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21
import os
32
import sys
43

docs/cookbook.rst

+2-4
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,8 @@ To avoid this simply disable concurrency, by using a mixin:
104104
105105
@disable_concurrency()
106106
def revision_view(self, request, object_id, version_id, extra_context=None):
107-
return super(ConcurrencyVersionAdmin, self).revision_view(
108-
request, object_id, version_id, extra_context=None)
107+
return super().revision_view(request, object_id, version_id, extra_context=None)
109108
110109
@disable_concurrency()
111110
def recover_view(self, request, version_id, extra_context=None):
112-
return super(ConcurrencyVersionAdmin, self).recover_view(
113-
request, version_id, extra_context)
111+
return super().recover_view(request, version_id, extra_context)

docs/middleware.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Each time a :class:`RecordModifiedError <concurrency.exceptions.RecordModifiedEr
110110
</tr>
111111
</table>
112112

113-
If you want to use ConcurrentMiddleware in the admin and you are using
113+
If you want to use ConcurrencyMiddleware in the admin and you are using
114114
:class:`concurrency.admin.ConcurrentModelAdmin` remember to set your ModelAdmin to NOT
115115
use :class:`concurrency.forms.ConcurrentForm`
116116

docs/requirements.pip

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
sphinx==3.5.2
22
django==3.1
3+
sphinx_issues

docs/settings.rst

-3
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,3 @@ Default::
173173

174174

175175
dict to customise :ref:`TriggerFactory`. Use this to customise the SQL clause to create triggers.
176-
177-
178-

setup.cfg

+11-13
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
[isort]
2-
line_length=90
32
combine_as_imports = true
4-
multi_line_output = 5
5-
default_section = FIRSTPARTY
6-
indent=' '
7-
8-
known_future_library=
9-
known_standard_library=six
10-
known_third_party=django
11-
known_first_party=demo
12-
13-
known_concurrency=concurrency
14-
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,CONCURRENCY,LOCALFOLDER
3+
default_section = THIRDPARTY
4+
include_trailing_comma = true
5+
line_length = 80
6+
known_future_library = future,pies
7+
known_standard_library =
8+
known_third_party = django
9+
known_first_party = sos
10+
multi_line_output = 0
11+
balanced_wrapping = true
12+
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
1513

1614
[flake8]
1715
max-complexity = 12
1816
max-line-length = 160
1917
exclude = .tox,migrations,.git,docs,diff_match_patch.py, deploy/**,settings
20-
ignore = E501,E401,W391,E128,E261,E731
18+
ignore = E501,E401,W391,E128,E261,E731,W504
2119

2220
[aliases]
2321
test=pytest

setup.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@ def finalize_options(self):
2828

2929
def run_tests(self):
3030
# import here, cause outside the eggs aren't loaded
31-
import pytest
3231
import sys
3332

33+
import pytest
34+
3435
sys.path.insert(0, os.path.join(ROOT, 'tests', 'demoapp'))
3536
errno = pytest.main(self.test_args)
3637
sys.exit(errno)
@@ -59,10 +60,12 @@ def run_tests(self):
5960
'Programming Language :: Python',
6061
'Framework :: Django :: 3.0',
6162
'Framework :: Django :: 3.1',
63+
'Framework :: Django :: 3.2',
64+
'Framework :: Django :: 4.0',
6265
'Programming Language :: Python :: 3',
63-
'Programming Language :: Python :: 3.6',
64-
'Programming Language :: Python :: 3.7',
6566
'Programming Language :: Python :: 3.8',
67+
'Programming Language :: Python :: 3.9',
68+
'Programming Language :: Python :: 3.10',
6669
'Topic :: Software Development :: Libraries :: Application Frameworks',
6770
'Topic :: Software Development :: Libraries :: Python Modules',
6871
],

src/concurrency/__init__.py

+1-1
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.3"
4+
VERSION = __version__ = "2.4"
55
NAME = 'django-concurrency'

0 commit comments

Comments
 (0)