Thomas Berdy

Results 7 comments of Thomas Berdy

Hi 👋 Based on what I understood, Django 5.0 support was simply a matter of relaxing the dependency constraints. I'm not challenging the fact we have a dependency constraint with...

I can't afford to further delay my Django 5.0 upgrade as I have planned features that depend on the new version capabilities. As a workaround, I released a custom build...

Launching `tox` with the latest commit of the master branch using `tox -e py312` installs Django 5.0 and reports 1 failure. I choose to ignore it because it's related to...

It's quite easy to fix, as we simply need to use `datetime.timezone.utc` [here](https://github.com/celery/django-celery-beat/blob/main/django_celery_beat/utils.py#L20) instead, as we already do [here](https://github.com/celery/django-celery-beat/blob/main/django_celery_beat/tzcrontab.py#L15). However, we might also want to fix in the same time...

Hi, I just submitted a PR on homebrew-cask: https://github.com/Homebrew/homebrew-cask/pull/186699 However, I have few hope it will pass because the app seems to be unsigned: https://github.com/Homebrew/homebrew-cask/actions/runs/11052018178/job/30703226719?pr=186699

I did a macOS 14.7 Sonoma clean install on an external SSD and `pyenv-virtualenv` is behaving normally, without any delays. At least on my platform, macOS Sequoia has a huge...

> Good to have this lines in your bashrc or zshrc > > ``` > export CPPFLAGS="-I$(brew --prefix)/include" > export LDFLAGS="-L$(brew --prefix)/lib" > ``` > > Also, run `brew link...