Yaakov Bressler

Results 38 comments of Yaakov Bressler

Same here. (Using github static pages)

I'd be thrilled to commit this change, if you'd be okay with giving me access to commit a branch + submit a PR?

Note, this issue is [downstream from this bug](https://github.com/forestryio/jekyll-menus/issues/14)

Yes. The code here references [Font Awesome icons](https://fontawesome.com/icons). For example, if you wanted to change the email icon from `mail` to a [`paper-plane`](https://fontawesome.com/icons/paper-plane?s=solid) do the following: ```html CHANGE THIS TO...

> As a workaround, you can just target a different profile with beefier compute when you run test. Otherwise, I think this is better raised with dbt-core. That's what I...

> It should be noted that using `gem "jekyll-menus", :git => "https://github.com/forestryio/jekyll-menus.git"` in my gemfile has resolved this issue, even on GitHub pages. This should be added to the documentation...

I ran your code and got the same result. You will want to modify your example to utilize `model_config` (tells you configuration) instead of `model_extra` (tells you if pydantic found...

As an aside, the following test cases pass: ``` @pytest.mark.parametrize( 'value', [ Decimal(1.234567890123456789012345678901234567890), Decimal(12345678901234567890123456789012345678.9), Decimal(1) / Decimal(7) ] ) def test_long_decimal_decoding(value: Decimal) -> None: """ Really large decimal values should...

Found where the behavior is being caused: ```py3 primitive_schema = core_schema.union_schema( [ # if it's an int keep it like that and pass it straight to Decimal # but if...