pylint-celery
pylint-celery copied to clipboard
Pylint plugin for analysing code using Celery
Note: This error originates from the build backend, and is likely not a problem with poetry but with pylint-celery (0.3) not supporting PEP 517 builds. You can verify this by...
> DEPRECATION: pylint-celery is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed. pip 23.1 will enforce...
https://pypi.org/project/pylint-celery/  ```html Project description UNKNOWN ``` https://github.com/gladykov/rebooter/issues/3#issue-1708654125
setuptools 60 uses its own bundled version of distutils, by default. It injects this into sys.modules, at import time. So we need to make sure that it is imported, before...
The bind=True parameter, which passes the task instance into the task execution triggers a pylint error despite executing fine ``` from celery import Celery app = Celery(broker='amqp://') @app.task(acks_late=True) def xxx(a):...
Making sure tests pass for python 3.5, 3.6, 3.7
Because pylint.testutils dropped the make_tests function.
Merge with `master` to get some fixes. Also add the license to the `MANIFEST.in` to ensure it is included in packages like `sdist`s.
`pylint` no longer depends on `logilab-common`, so let's get rid of the last bits of `logilab-common` in `pylint-celery` as well. The PR also updates the list of tested Python version...
Does this support Python 3? Seems there are only Python 2.6 and 2.7 build in the CIs.