Skip to content

Commit

Permalink
update version and drop py2 support
Browse files Browse the repository at this point in the history
  • Loading branch information
sontek committed Feb 24, 2021
1 parent 0ef35a4 commit e3700ca
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
4.0.0
================
- Drop support for celery 3.0
- Drop support for Pyramid 2.7
- Error out if ini is misconfigured
- Add support for pyramid2
- Add support for pyramid v2
- Add support for celery v5
- Drop support for old CELERY config options,
use only the lower case versions.
- Added support for `options` in celerybeat.
- Added support for `broker_transport_options`

3.0.0
================
Expand Down
2 changes: 1 addition & 1 deletion pyramid_celery/loaders.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import json
import celery.loaders.base
import celery.schedules
import configparser
from celery import VERSION as celery_version
from six.moves import configparser
from pyramid.exceptions import ConfigurationError

from functools import partial
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
pyramid
celery
six
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
requires = ['pyramid', 'celery']

setup(name='pyramid_celery',
version='3.0.0',
version='4.0.0',
description='Celery integration with pyramid',
long_description=README + "\n" + CHANGES,
classifiers=[
Expand Down

0 comments on commit e3700ca

Please sign in to comment.