Skip to content

Commit

Permalink
Getting ready for 1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Koed00 committed Jun 10, 2020
1 parent 142af91 commit 5d3f9fd
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion django_q/__init__.py
@@ -1,4 +1,4 @@
VERSION = (1, 2, 3)
VERSION = (1, 2, 4)

default_app_config = 'django_q.apps.DjangoQConfig'

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -73,7 +73,7 @@
# The short X.Y version.
version = '1.2'
# The full version, including alpha/beta/rc tags.
release = '1.2.3'
release = '1.2.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
14 changes: 8 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 6 additions & 7 deletions pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-q"
version = "1.2.3"
version = "1.2.4"
description = "A multiprocessing distributed task queue for Django"
authors = ["Ilan Steemers <koed00@gmail.com>"]
license = "MIT"
Expand Down Expand Up @@ -39,21 +39,20 @@ include=['CHANGELOG.md']
[tool.poetry.dependencies]
python = ">=3.6"
django = ">=2.2"
django-picklefield = "^2.1.1"
blessed = "^1.17.6"
arrow = "^0.15.6"

django-q-rollbar= { version = "^0.1", optional = true }
django-q-sentry = { version = "^0.1", optional = true }
django-picklefield = "^3.0.1"

[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
pytest-django = "^3.9.0"

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"

[tool.poetry.extras]
rollbar = ["django-q-rollbar"]
sentry = ["django-q-sentry "]
sentry = ["django-q-sentry "]
requires = ["poetry>=0.12"]
build-backend = ["poetry.masonry.api"]

4 changes: 2 additions & 2 deletions requirements.txt
Expand Up @@ -7,8 +7,8 @@
arrow==0.15.6 # via -r requirements.in
asgiref==3.2.7 # via django
blessed==1.17.8 # via -r requirements.in
boto3==1.13.25 # via -r requirements.in
botocore==1.16.25 # via boto3, s3transfer
boto3==1.13.26 # via -r requirements.in
botocore==1.16.26 # via boto3, s3transfer
certifi==2020.4.5.2 # via requests
chardet==3.0.4 # via requests
django-picklefield==3.0.1 # via -r requirements.in
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -26,7 +26,7 @@ def run(self):

setup(
name='django-q',
version='1.2.3',
version='1.2.4',
author='Ilan Steemers',
author_email='koed00@gmail.com',
keywords='django multiprocessing worker scheduler queue',
Expand Down

0 comments on commit 5d3f9fd

Please sign in to comment.