statrs-dev / statrs

Statistical computation library for Rust
https://docs.rs/statrs/latest/statrs/
MIT License
544 stars 78 forks source link

Remove `feature = "nightly"` gate where unneeded #232

Closed FreezyLemon closed 1 month ago

FreezyLemon commented 1 month ago

The nightly feature hides some testing helpers and macros, and all tests using any of them need to be hidden behind the nightly feature too.

This isn't great (see #228) and I want to increase the amount of tests that can be run without unstable and/or nightly compiler features. The tests modified in this PR are low-hanging fruit, they don't require any nightly feature at all.

RationalAsh commented 1 month ago

Just saw this after I added my comment on the previous thread. This will be helpful!

YeungOnion commented 1 month ago

Thanks for this!