Brennan Toomey
Brennan Toomey
NO! https://github.com/pandas-dev/pandas/issues/47911#issuecomment-1201676711
i is only positional in the documentation... it's definitely not strictly positional in current functionality. https://github.com/pandas-dev/pandas/blob/14de3fd9ca4178bfce5dd681fa5d0925e057c04d/pandas/core/strings/object_array.py#L249:L257
How `Series.str` works for *anything* (`list`, `tuple`, `dict`, `set`, etc.) that isn't a string hasn't made much sense logically for a while. In my opinion, mirroring how `dict.get` does things...
Perhaps a good balance would be taking only the first section of a docstring, as the convention of what they _should_ look like is fairly well defined: https://peps.python.org/pep-0257/#handling-docstring-indentation ``` class...
I hadn't seen this PR until after I made [mine](https://github.com/godatadriven/pydantic-avro/pull/94), and originally closed it. But, because it adds the reverse Avro --> Pydantic as well, I've taken some ideas from...
My real reason for discovering this was troubleshooting unexpected results when doing something like: ``` [tool.poetry.dependencies] sqlalchemy = [ {version = "^1.4.48", optional = false}, {version = "^1.4.48", extras =...
`AnnotationConsolidationLambdaArn` is required _only if_ `AnnotationConsolidationConfig` is provided. `AnnotationConsolidationConfig` itself is no longer required [API_HumanTaskConfig](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HumanTaskConfig.html#sagemaker-Type-HumanTaskConfig-AnnotationConsolidationConfig) Therefore, it is incorrect to say that `AnnotationConsolidationLambdaArn` is required for all labeling jobs. It...
There seems to be movement to clarify this in pep440 https://github.com/python/peps/commit/a703204b82a262985243dbe1994581860eb62f6f > the `1.1a1` in `== 1.1.*` is dependent on whether the user requested pre-releases or not Although, I think...
@dadudadn ``` $ poetry add scipy@latest Using version ^1.11.3 for scipy Updating dependencies Resolving dependencies... (0.0s) The current project's Python requirement (>=3.10,=3.13,1.11.3,=3.10,=3.13 if you so please. There really isn't any...
@dadudadn both of my configs work perfectly fine. You say `python >= 3.10,= 3.13`. If your project requires `scipy`, it does not work with `python >= 3.13`, therefore, poetry will...