Esteban C Borsani
Esteban C Borsani
I suspect this is because you are using a string for the expiration instead of a int. Try replacing ``` AZURE_URL_EXPIRATION_SECS = '600' ``` by ``` AZURE_URL_EXPIRATION_SECS = 600 ```...
Upgrade Django to the latest 3.2.14 security patch if you can; otherwise this is not usable anymore.
I just released v0.13 which supports django 3.2, and 4.2 remember to read the upgrade instructions if needed https://spirit.readthedocs.io/en/latest/upgrade.html
`st/admin/category/create`
JFYI I've implemented the new API. The old one is deprecated and prints deprecation warnings. The changes are basically: ``` re"regex" -> re2"regex" Regex -> Regex2 RegexMatch -> RegexMatch2 ```...
I didn't give it serious thought. I guess I just don't find re2, RegexMatch2 ugly. If they were a lot more symbols then yeah, a new package would definitely be...
> But then all users of your package will have to modify their code also? They already have to. Deprecation is so they have time to do it, before those...
> Perhaps you have seen, that the book has now also a section titled "Parsing data files (in parallel)" where your regex package is compared to many other ways to...
That's sad. I left Nim community around that time as well for the same reasons. But I still like the language as well, and I'm fine with not being part...
there is more than one issue it seems. the slow compile time seems to be some Nim VM bottleneck. It should not take that long, even for a 17K length...
The slow compile time seems to be a C/C++ backend issue. If you compile for js it only takes 15s. I've tried adding a debugEcho after the regex compilation and...