paulreece

Results 34 comments of paulreece

@mrazauskas So you want me to split out each md file that I edited? Like 20 PRs? There's only a couple of changes per file, just changing the old note...

@SimenB @mrazauskas I split the files into separate PRs. Here ya go: https://github.com/facebook/jest/pull/13293 https://github.com/facebook/jest/pull/13294 https://github.com/facebook/jest/pull/13295 https://github.com/facebook/jest/pull/13296 https://github.com/facebook/jest/pull/13297 https://github.com/facebook/jest/pull/13298 https://github.com/facebook/jest/pull/13299 https://github.com/facebook/jest/pull/13300 https://github.com/facebook/jest/pull/13301 https://github.com/facebook/jest/pull/13302 https://github.com/facebook/jest/pull/13303 https://github.com/facebook/jest/pull/13304 https://github.com/facebook/jest/pull/13305 https://github.com/facebook/jest/pull/13306 https://github.com/facebook/jest/pull/13307 https://github.com/facebook/jest/pull/13308 https://github.com/facebook/jest/pull/13309 https://github.com/facebook/jest/pull/13311

@mrazauskas To Clarify were you all wanting admonitions in each of the files in each sub directory of website/versioned_docs?

@SimenB or @mrazauskas Would it be possible for you to ping me on here when you do roll out the 29.1 versions so I can then update #13295 and #13310...

Hey there, thanks for bringing this to our attention. It seems like we do elaborate on this a bit in [changing-the-default-settings](https://guides.rubyonrails.org/testing.html#changing-the-default-settings). By default Rails creates the new app with :...

Thanks for clarifying! To further troubleshoot, are you working on a Mac M1 or Mac M2 processor?

I've confirmed this. I am currently looking into what the best config option will be to get this running effectively but I do agree with you that this should be...

This bug doesn't exist on the main development branch: ```Python >>> list_input = [1.1, 2.2, 3.3, float('nan')] >>> series_input = pd.Series(list_input) >>> pd.cut(list_input, 2) [(1.098, 2.2], (1.098, 2.2], (2.2, 3.3],...

This is fixed on `2.1.x` as well: ```Python >>> pd.cut(list_input, 2) [(1.098, 2.2], (1.098, 2.2], (2.2, 3.3], NaN] Categories (2, interval[float64, right]): [(1.098, 2.2] < (2.2, 3.3]] >>> pd.cut(series_input, 2)...