Devid
Devid
### Expected behaviour Whenever a network/connection problem it could be useful to distinguish it directly from a logic authentication error. This could improve filtering based on exception type (ie: to...
The implementation with firebase SDK has changed the output of the `send_message` method Before it was a `dict` https://github.com/jazzband/django-push-notifications/blob/7d2805266dfe3384823ae97f2d674d31d0a97a2d/push_notifications/gcm.py#L202-L204 Now it is a `BatchResponse` https://github.com/jazzband/django-push-notifications/blob/0f7918136b5e6a9aec83d6513aad5b0f12143a9f/push_notifications/gcm.py#L188-L190 This means that any code...
Providing the licence file in the pyproject.toml is admitted but in that way the metadata of the package is very verbose and may break tools which are intended to parse...
In both [setup.py](https://github.com/web-push-libs/pywebpush/blob/c99d0f7997f6796eff257083baf2a0ad77cfa518/setup.py#L46) and [pyproject.toml](https://github.com/web-push-libs/pywebpush/blob/c99d0f7997f6796eff257083baf2a0ad77cfa518/pyproject.toml#L26) is stated that this project is Python3 only. Six is [only used in the main script](https://github.com/search?q=repo%3Aweb-push-libs%2Fpywebpush+six+language%3APython&type=code&l=Python) to check for `six.text_types` which in Python3 is `str`....
When using this extension the menu does not get updated if a new audio device is plugged in or an existing one if unplugged. It seems like the list is...
The `test` command of `setuptools` has long being deprecated and it was removed from version 72.0.0 which was released this night https://github.com/pypa/setuptools/issues/4519 https://github.com/fizista/django-password-validators/blob/b9c0384c21cb3f7ccfb256cd0e0b6bfb500abf83/setup.py#L6 https://github.com/fizista/django-password-validators/blob/b9c0384c21cb3f7ccfb256cd0e0b6bfb500abf83/setup.py#L11-L30 This now prevents from installing this...
Currently what is stated in the docs is not aligned with what the code does: https://github.com/jazzband/django-smart-selects/blob/1f3ac7c08a31d2e8cc792f1de484a027a25eef1f/docs/settings.md?plain=1#L3-L10 https://github.com/jazzband/django-smart-selects/blob/1f3ac7c08a31d2e8cc792f1de484a027a25eef1f/smart_selects/widgets.py#L16-L51 Also there are no tests which ensures this beaviour. The issues are: -...
Currently inside this package there are few methods which has a logger enabled. Some are configured as `getLogger("health-check")` while other as `getLogger(__name__)`. This may cause confusion when someone has to...
Django 5.1 was just released. This PR also updates requirements specification in setup according to tests.