Skip to content

fix: Track all submodules instead of one (#106)

Sign in for the full log view
GitHub Actions / clippy failed Dec 10, 2024 in 0s

clippy

2 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 2
Warning 0
Note 0
Help 0

Versions

  • rustc 1.83.0 (90b35a623 2024-11-26)
  • cargo 1.83.0 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (90b35a6 2024-11-26)

Annotations

Check failure on line 42 in examples/mixed_sub_multiple/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

use of deprecated associated function `pyo3::types::PyModule::new_bound`: renamed to `PyModule::new`

error: use of deprecated associated function `pyo3::types::PyModule::new_bound`: renamed to `PyModule::new`
  --> examples/mixed_sub_multiple/src/lib.rs:42:25
   |
42 |     let sub = PyModule::new_bound(py, "mod_b")?;
   |                         ^^^^^^^^^

Check failure on line 33 in examples/mixed_sub_multiple/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

use of deprecated associated function `pyo3::types::PyModule::new_bound`: renamed to `PyModule::new`

error: use of deprecated associated function `pyo3::types::PyModule::new_bound`: renamed to `PyModule::new`
  --> examples/mixed_sub_multiple/src/lib.rs:33:25
   |
33 |     let sub = PyModule::new_bound(py, "mod_a")?;
   |                         ^^^^^^^^^
   |
   = note: `-D deprecated` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(deprecated)]`