Skip to content

Commit 5d3f9fd

Browse files
committed
Getting ready for 1.2.4
1 parent 142af91 commit 5d3f9fd

File tree

6 files changed

+19
-18
lines changed

6 files changed

+19
-18
lines changed

django_q/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (1, 2, 3)
1+
VERSION = (1, 2, 4)
22

33
default_app_config = 'django_q.apps.DjangoQConfig'
44

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
# The short X.Y version.
7474
version = '1.2'
7575
# The full version, including alpha/beta/rc tags.
76-
release = '1.2.3'
76+
release = '1.2.4'
7777

7878
# The language for content autogenerated by Sphinx. Refer to documentation
7979
# for a list of supported languages.

poetry.lock

Lines changed: 8 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-q"
3-
version = "1.2.3"
3+
version = "1.2.4"
44
description = "A multiprocessing distributed task queue for Django"
55
authors = ["Ilan Steemers <[email protected]>"]
66
license = "MIT"
@@ -39,21 +39,20 @@ include=['CHANGELOG.md']
3939
[tool.poetry.dependencies]
4040
python = ">=3.6"
4141
django = ">=2.2"
42-
django-picklefield = "^2.1.1"
4342
blessed = "^1.17.6"
4443
arrow = "^0.15.6"
4544

4645
django-q-rollbar= { version = "^0.1", optional = true }
4746
django-q-sentry = { version = "^0.1", optional = true }
47+
django-picklefield = "^3.0.1"
4848

4949
[tool.poetry.dev-dependencies]
5050
pytest = "^5.4.2"
5151
pytest-django = "^3.9.0"
5252

53-
[build-system]
54-
requires = ["poetry>=0.12"]
55-
build-backend = "poetry.masonry.api"
56-
5753
[tool.poetry.extras]
5854
rollbar = ["django-q-rollbar"]
59-
sentry = ["django-q-sentry "]
55+
sentry = ["django-q-sentry "]
56+
requires = ["poetry>=0.12"]
57+
build-backend = ["poetry.masonry.api"]
58+

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
arrow==0.15.6 # via -r requirements.in
88
asgiref==3.2.7 # via django
99
blessed==1.17.8 # via -r requirements.in
10-
boto3==1.13.25 # via -r requirements.in
11-
botocore==1.16.25 # via boto3, s3transfer
10+
boto3==1.13.26 # via -r requirements.in
11+
botocore==1.16.26 # via boto3, s3transfer
1212
certifi==2020.4.5.2 # via requests
1313
chardet==3.0.4 # via requests
1414
django-picklefield==3.0.1 # via -r requirements.in

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def run(self):
2626

2727
setup(
2828
name='django-q',
29-
version='1.2.3',
29+
version='1.2.4',
3030
author='Ilan Steemers',
3131
author_email='[email protected]',
3232
keywords='django multiprocessing worker scheduler queue',

0 commit comments

Comments
 (0)