AlexanderPodorov
AlexanderPodorov
### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....
Thanks for the excellent library @samuelcolvin ! Is this project abandoned or there’s plans to come back to it once pydantic v2 gets settled? Thanks!
### Ensure stubs packages are not installed - [X] No sqlalchemy stub packages is installed (both `sqlalchemy-stubs` and `sqlalchemy2-stubs` are not compatible with v2) ### Verify if the api is...
### Ensure stubs packages are not installed - [X] No sqlalchemy stub packages is installed (both `sqlalchemy-stubs` and `sqlalchemy2-stubs` are not compatible with v2) ### Verify if the api is...
Following deprecation warning is shown: ``` DeprecationWarning: NEAREST is deprecated and will be removed in Pillow 10 (2023-07-01). Use Resampling.NEAREST or Dither.NONE instead. image = image.resize((int(width*self.dpmm), int(height*self.dpmm)), PIL.Image.NEAREST) ``` My...
### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description See example code ### Example Code ```Python from typing import Literal from pydantic import BaseModel type...
List or Sequence of discriminated unions fails to produce the json schema if TypeAliasType as used
### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description Run the example code. See this issue for additional context: https://github.com/pydantic/pydantic/issues/6884 ### Example Code ```Python from...
### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....
### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description `pydantic.Field` function does not accept `Decimal` as `multiple_of` parameter. However passing `Decimal` value works fine at...
Hi, thanks for this library! Is it possible to generate huge PNGs, e.g. 6600x81000 with RGBA? Using this library https://github.com/pngjs/pngjs I was able to do it. I'm getting: ``` Uncaught...