Using dart sass in a Django project?

Is there a good way to use up-to-date sass (dart sass) in a django project? Searching pypi, I find loads of packages that uses libsass, but so far I haven’t found anything using dart sass. Am I just bad at searching?

The sass language is still being developed, but mainly in dart sass, and libsass is deperecated and quickly falling behind. It seems libsass can no longer be used for up-to-date bootstrap, so it seems strange if I’m the only one having this problem?

I use django-compressor.

Install sass and then set COMPRESS_PRECOMPILERS to invoke it.

HTH

I already use django-compressor, so that should fit me fine. Didn’t realize I can configure it to use an external command rather than a “python-packaged” sass.

Thanks!