Stu
Stu
I'm finding that this module doesn't output values that closely match scipy.stats.fisher_exact. I this a divergence in my test. Is the scipy.stats.fisher_exact, or this library correct? ``` import unittest import...
When we have: ``` @component @dataclasses.dataclass class Location: x: int y: int @component @dataclasses.dataclass class UserProfile: name: str age: int email: str location: Location #Path ``` Location is define twice...
``` import dataclasses from sanic_ext.extensions.openapi import openapi @dataclasses.dataclass class Path: x: [float] y: [float] @property def reversed(self) -> "Path": # Recurses return Path( x=self.x[::-1], y=self.y[::-1], ) openapi.component(Path) # Infinite loop...
## 🐛 Bug Report Added: (pubpec.yaml) ``` dependencies: flutter_tts: ^4.0.2 ``` Added: (app/build.gradle) ``` android { defaultConfig { minSdkVersion 21 ``` ``` Running Gradle task 'assembleDebug'... e: Incompatible classes were...
OpenAI.instance.audio.createSpeech insists on saving the result to a file. It doesn't seem necessary (and is problematic for me). (Perhaps it could return the result if the file and directory were...
### Steps to reproduce Run the full example, below with a Linux target. No combination of : ``` Row(children:[Flexible(flex:1, ... ), Flexible(flex:3, ... ), ] Row(children:[Flexible(flex:1, ... ), Expanded(flex:3, ......
The following runs 28x slow in Docker (~28s) than on its host (~1s). I'm pretty sure something is not being compiled correctly. Both the host use the same version of...
## Reporting a bug - [*] I am using the latest released version of Numba (most recent is visible in the change log (https://github.com/numba/numba/blob/master/CHANGE_LOG). - [*] I have included below...
## Feature request ## Reporting a bug - [*] I am using the latest released version of Numba (most recent is visible in the change log (https://github.com/numba/numba/blob/master/CHANGE_LOG). **numba-0.38.1** - [*]...
With the example: https://pub.dev/packages/intl_phone_number_input/example and the only change: ``` String initialCountry = 'US'; PhoneNumber number = PhoneNumber(isoCode: 'US'); ``` ... the widget doesn't appear to correctly validate any numbers: ![Screenshot...