Adil Naimi

Results 11 comments of Adil Naimi

same error Django 1.11.10 django-prometheus 1.0.11 Python 3.6.4

I submitted a PR https://github.com/korfuri/django-prometheus/pull/63 based on https://github.com/korfuri/django-prometheus/pull/28 which is old, I only added the test to my env: Django 1.11.10 django-prometheus 1.0.11 Python 3.6.4

@pje 👇 Any chance that you or someone else on the actions team could take a look?

hey @amlwwalker did you find out the final working version, can you share your config, thanks

@patrickod, any update on this? I saw that v0.26.2 supports arm64, but on a local Macbook M1, pip install fails: ``` ❯ docker run --rm -it python:3.9 bash root@2136ca298f4c:/# uname...

I can't install Python 0.27.3 on aarch64: ``` docker run --rm -it public.ecr.aws/docker/library/python:3.12 bash root@2a8ca20a5cb3:/# uname -m aarch64 root@2a8ca20a5cb3:/# pip install oso ERROR: Could not find a version that satisfies...

I manage to fix our local build using this: Dockerfile: ``` # Use manylinux_2_28 image FROM quay.io/pypa/manylinux_2_28_aarch64 as build RUN yum -y install gcc make patch zlib-devel bzip2 bzip2-devel readline-devel...

Thank you @CGarces; I adjusted the additional context.

AWS Lambda now supports Python 3.10 as both a managed runtime and a container base image https://aws.amazon.com/about-aws/whats-new/2023/04/aws-lambda-python-3-10/

I came across this thread while searching for a Loguru example in Django to compare with Structlog. Sharing my Django and Structlog setup to inspire a Loguru+Django setup hopefully: ###...