Alexander Way
                                            Alexander Way
                                        
                                    The culprit seems to be https://github.com/staticjinja/staticjinja/blob/main/staticjinja/staticjinja.py#L344 The simple test below fails: ``` from pathlib import Path # Create test file filename = "readme.md" Path(filename).touch() staticpaths = ["readme/"] for path in...
Digging into this further the issue is caused by the `@deconstructable` class decorator on the `Money` class in `djmoney/money.py`. This might point the issue more towards django, rather than this...
As a workaround I've done something which I don't advise as it can cause issues with type hinting for other objects. However, it seems to work for my use case....
I'm not 100% certain, but I think this functionality is natively supported (Although not explicit like using factory.django.DjangoModelFactory): ```python class Account(BaseModel): id: int name: Optional[str] is_active: bool created_at: datetime updated_at:...
You need to provide a confined reproducible repl, you can't just provide your entire app and expect the svelte team to troubleshoot for you 😢 You've even said yourself the...
@dbanty Would it be wise to wait until #920 is merged until adding any unit tests into this one? The core functionality is there, just tests currently missing
Just to double check you just want to be able to increment the version number specified in the `[packageName].csproj` file?
Looks like the answer is to create a module within crates/knope-versioning/src/ e.g. https://github.com/knope-dev/knope/blob/72fb94c104328c1e85c68c056c5ab99bacad5ef6/crates/knope-versioning/src/pyproject.rs Will investigate further to see if I'm able to assist
Further onto the above, it looks as though there isn't an xml parser. Suggesting we use https://crates.io/crates/serde-xml-rs to be inline with the other parsers in the `knope-versioning` crate
Not currently sure how knope loads the `versioned_files` but I'll figure it out eventually. I will also say that I'm still very green when it comes to rust so there's...