Xavier Fernandez

Results 8 issues of Xavier Fernandez

Hello, since version 0.1.2, no wheel file has been uploaded to pypi.org. (cf https://pypi.org/simple/django-npm/) This could improve the installation speed. ``` git checkout v1.0.0 pip install -U setuptools wheel python...

There seems to be a contradiction between the documentation: https://github.com/arskom/spyne/blob/master/spyne/model/primitive.py#L715-L718 """ When this is None and a datetime with tzinfo=None comes in, it's converted to spyne.LOCAL_TZ which defaults to `pytz.utc`....

This storage class allows to combine two different storages and is quite useful to migrate from one storage to an other. Would there be interest in including such functionality in...

Each time pip drops the support for some version of python, users need to update their script from `https://bootstrap.pypa.io/get-pip.py` to `https://bootstrap.pypa.io/X.Y/get-pip.py`. I'm wondering if we shouldn't directly provide `https://bootstrap.pypa.io/X.Y/get-pip.py` for...

enhancement
maintainance

Cognito access tokens are lacking the `aud` field (cf https://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-using-tokens-with-identity-providers.html#amazon-cognito-user-pools-using-the-access-token) making their decoding impossible/invalid with this library since the audience is provided & expected at the decoding step: https://github.com/labd/django-cognito-jwt/blob/master/src/django_cognito_jwt/validator.py#L64. Would...

From the [Discuss](https://discuss.python.org/t/pre-release-integration-testing-for-pip-and-or-other-build-tools/780), here is what I understood the tests could look like: - Prepare the artefacts: for all the packaging bricks: pip, setuptools, etc: - download the latest stable...

When using the `@pytest.mark.ignore_template_errors` on a test, we could expect the test to return to its original behavior (just like running them without `--fail-on-template-vars`). This would ease the use of...

Match current behavior of Django's `RadioSelect` widget which allow to customize individual options' `attrs` (including `disabled` in a `ChoiceField`). The `create_option` hook is documented in Django https://docs.djangoproject.com/en/5.0/ref/forms/fields/ to allow the...