Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use phf for confusables to reduce llvm lines #4926

Merged
merged 3 commits into from
Jun 8, 2023
Merged

Conversation

konstin
Copy link
Member

@konstin konstin commented Jun 7, 2023

Summary

This replaces FxHashMap for the confusables with a perfect hash map from the phf crate to reduce the generated llvm instructions.

A perfect hash function is one that doesn't have any collisions. We can build one because we know all keys at compile time. This improves hashmap efficiency, even though this is likely not noticeable in our case (except someone has a large non-english crate to test on).

The original hashmap contained a lot of duplicates, which i had to remove when phf_map complained, i did so by sorting the keys.

The important part that it reduces the llvm instructions generated (#3808, RUSTFLAGS="-Csymbol-mangling-version=v0" cargo llvm-lines -p ruff --lib | head -20):

  Lines                  Copies               Function name
  -----                  ------               -------------
  1740502                38973                (TOTAL)
    27423 (1.6%,  1.6%)      1 (0.0%,  0.0%)  ruff[cef4c65d96248843]::rules::ruff::rules::confusables::CONFUSABLES::{closure#0}
    10193 (0.6%,  2.2%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::RuleCodePrefix>::iter
     8107 (0.5%,  2.6%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::Rule>::noqa_code
     7345 (0.4%,  3.0%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::checkers::ast::Checker as ruff_python_ast[3778b140caf21545]::visitor::Visitor>::visit_stmt
     6412 (0.4%,  3.4%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::spanned::SpannedDeserializer<toml_edit[7e3a6c5e67260672]::de::value::ValueDeserializer>>
     6412 (0.4%,  3.8%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::table::TableMapAccess>
     6409 (0.4%,  4.2%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::datetime::DatetimeDeserializer>
     5696 (0.3%,  4.5%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::checkers::ast::Checker as ruff_python_ast[3778b140caf21545]::visitor::Visitor>::visit_expr
     4448 (0.3%,  4.7%)      1 (0.0%,  0.0%)  ruff[cef4c65d96248843]::flake8_to_ruff::converter::convert
     3702 (0.2%,  4.9%)      1 (0.0%,  0.0%)  <&ruff[cef4c65d96248843]::registry::Linter as core[da82827a87f140f9]::iter::traits::collect::IntoIterator>::into_iter
     3349 (0.2%,  5.1%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::registry::Linter>::code_for_rule
     3132 (0.2%,  5.3%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::Rule as core[da82827a87f140f9]::fmt::Debug>::fmt
     3130 (0.2%,  5.5%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<&ruff[cef4c65d96248843]::codes::Rule>>::from
     3130 (0.2%,  5.7%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<ruff[cef4c65d96248843]::codes::Rule>>::from
     3130 (0.2%,  5.9%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::Rule as core[da82827a87f140f9]::convert::AsRef<str>>::as_ref
     3128 (0.2%,  6.0%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::RuleIter>::get
     2669 (0.2%,  6.2%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_seq::<toml_edit[7e3a6c5e67260672]::de::array::ArraySeqAccess>

After:

  Lines                  Copies               Function name
  -----                  ------               -------------
  1710487                38900                (TOTAL)
    10193 (0.6%,  0.6%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::RuleCodePrefix>::iter
     8107 (0.5%,  1.1%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::Rule>::noqa_code
     7345 (0.4%,  1.5%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::checkers::ast::Checker as ruff_python_ast[5588cd60041c8605]::visitor::Visitor>::visit_stmt
     6412 (0.4%,  1.9%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::spanned::SpannedDeserializer<toml_edit[7e3a6c5e67260672]::de::value::ValueDeserializer>>
     6412 (0.4%,  2.2%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::table::TableMapAccess>
     6409 (0.4%,  2.6%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::datetime::DatetimeDeserializer>
     5696 (0.3%,  3.0%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::checkers::ast::Checker as ruff_python_ast[5588cd60041c8605]::visitor::Visitor>::visit_expr
     4448 (0.3%,  3.2%)      1 (0.0%,  0.0%)  ruff[52408f46d2058296]::flake8_to_ruff::converter::convert
     3702 (0.2%,  3.4%)      1 (0.0%,  0.0%)  <&ruff[52408f46d2058296]::registry::Linter as core[da82827a87f140f9]::iter::traits::collect::IntoIterator>::into_iter
     3349 (0.2%,  3.6%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::registry::Linter>::code_for_rule
     3132 (0.2%,  3.8%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::Rule as core[da82827a87f140f9]::fmt::Debug>::fmt
     3130 (0.2%,  4.0%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<&ruff[52408f46d2058296]::codes::Rule>>::from
     3130 (0.2%,  4.2%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<ruff[52408f46d2058296]::codes::Rule>>::from
     3130 (0.2%,  4.4%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::Rule as core[da82827a87f140f9]::convert::AsRef<str>>::as_ref
     3128 (0.2%,  4.5%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::RuleIter>::get
     2669 (0.2%,  4.7%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_seq::<toml_edit[7e3a6c5e67260672]::de::array::ArraySeqAccess>
     2659 (0.2%,  4.9%)      1 (0.0%,  0.0%)  <&ruff[52408f46d2058296]::codes::Pylint as core[da82827a87f140f9]::iter::traits::collect::IntoIterator>::into_iter

I'd assume this has a positive effect both on compile time and on runtime, but i don't know the actual effect on compile times and can't really measure.

Test plan

Check CI for any performance regressions.

This should fix #3808 if we merge it.

## Summary

This replaces FxHashMap for the confusables with a perfect hash map from the [phf crate](https://github.com/rust-phf/rust-phf) to reduce the generated llvm instructions.

A perfect hash function is one that doesn't have any collisions. We can build one because we know all keys at compile time. This improves hashmap efficiency, even though this is likely not noticeable in our case (except someone has a large non-english crate to test on).

The original hashmap contained a lot of duplicates, which i had to remove when phf_map complained, i did so by sorting the keys.

The important part that it reduces the llvm instructions generated (#3808, `RUSTFLAGS="-Csymbol-mangling-version=v0" cargo llvm-lines -p ruff --lib | head -20`):

```
  Lines                  Copies               Function name
  -----                  ------               -------------
  1740502                38973                (TOTAL)
    27423 (1.6%,  1.6%)      1 (0.0%,  0.0%)  ruff[cef4c65d96248843]::rules::ruff::rules::confusables::CONFUSABLES::{closure#0}
    10193 (0.6%,  2.2%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::RuleCodePrefix>::iter
     8107 (0.5%,  2.6%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::Rule>::noqa_code
     7345 (0.4%,  3.0%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::checkers::ast::Checker as ruff_python_ast[3778b140caf21545]::visitor::Visitor>::visit_stmt
     6412 (0.4%,  3.4%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::spanned::SpannedDeserializer<toml_edit[7e3a6c5e67260672]::de::value::ValueDeserializer>>
     6412 (0.4%,  3.8%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::table::TableMapAccess>
     6409 (0.4%,  4.2%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::datetime::DatetimeDeserializer>
     5696 (0.3%,  4.5%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::checkers::ast::Checker as ruff_python_ast[3778b140caf21545]::visitor::Visitor>::visit_expr
     4448 (0.3%,  4.7%)      1 (0.0%,  0.0%)  ruff[cef4c65d96248843]::flake8_to_ruff::converter::convert
     3702 (0.2%,  4.9%)      1 (0.0%,  0.0%)  <&ruff[cef4c65d96248843]::registry::Linter as core[da82827a87f140f9]::iter::traits::collect::IntoIterator>::into_iter
     3349 (0.2%,  5.1%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::registry::Linter>::code_for_rule
     3132 (0.2%,  5.3%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::Rule as core[da82827a87f140f9]::fmt::Debug>::fmt
     3130 (0.2%,  5.5%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<&ruff[cef4c65d96248843]::codes::Rule>>::from
     3130 (0.2%,  5.7%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<ruff[cef4c65d96248843]::codes::Rule>>::from
     3130 (0.2%,  5.9%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::Rule as core[da82827a87f140f9]::convert::AsRef<str>>::as_ref
     3128 (0.2%,  6.0%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::RuleIter>::get
     2669 (0.2%,  6.2%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_seq::<toml_edit[7e3a6c5e67260672]::de::array::ArraySeqAccess>
```
After:
```
  Lines                  Copies               Function name
  -----                  ------               -------------
  1710487                38900                (TOTAL)
    10193 (0.6%,  0.6%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::RuleCodePrefix>::iter
     8107 (0.5%,  1.1%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::Rule>::noqa_code
     7345 (0.4%,  1.5%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::checkers::ast::Checker as ruff_python_ast[5588cd60041c8605]::visitor::Visitor>::visit_stmt
     6412 (0.4%,  1.9%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::spanned::SpannedDeserializer<toml_edit[7e3a6c5e67260672]::de::value::ValueDeserializer>>
     6412 (0.4%,  2.2%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::table::TableMapAccess>
     6409 (0.4%,  2.6%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::datetime::DatetimeDeserializer>
     5696 (0.3%,  3.0%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::checkers::ast::Checker as ruff_python_ast[5588cd60041c8605]::visitor::Visitor>::visit_expr
     4448 (0.3%,  3.2%)      1 (0.0%,  0.0%)  ruff[52408f46d2058296]::flake8_to_ruff::converter::convert
     3702 (0.2%,  3.4%)      1 (0.0%,  0.0%)  <&ruff[52408f46d2058296]::registry::Linter as core[da82827a87f140f9]::iter::traits::collect::IntoIterator>::into_iter
     3349 (0.2%,  3.6%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::registry::Linter>::code_for_rule
     3132 (0.2%,  3.8%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::Rule as core[da82827a87f140f9]::fmt::Debug>::fmt
     3130 (0.2%,  4.0%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<&ruff[52408f46d2058296]::codes::Rule>>::from
     3130 (0.2%,  4.2%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<ruff[52408f46d2058296]::codes::Rule>>::from
     3130 (0.2%,  4.4%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::Rule as core[da82827a87f140f9]::convert::AsRef<str>>::as_ref
     3128 (0.2%,  4.5%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::RuleIter>::get
     2669 (0.2%,  4.7%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_seq::<toml_edit[7e3a6c5e67260672]::de::array::ArraySeqAccess>
     2659 (0.2%,  4.9%)      1 (0.0%,  0.0%)  <&ruff[52408f46d2058296]::codes::Pylint as core[da82827a87f140f9]::iter::traits::collect::IntoIterator>::into_iter
```

I'd assume this has a positive effect both on compile time and on runtime, but i don't know the actual effect on compile times and can't really measure.

## Test plan

Check CI for any performance regressions.

This should fix #3808 if we merge it.
@konstin
Copy link
Member Author

konstin commented Jun 7, 2023

Current dependencies on/for this PR:

This comment was auto-generated by Graphite.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file is autogenerated, so I think we need to update the generation script instead.

@charliermarsh
Copy link
Member

Any way we can benchmark the effect on runtime?

@github-actions
Copy link
Contributor

github-actions bot commented Jun 7, 2023

PR Check Results

Benchmark

Linux

group                                      main                                   pr
-----                                      ----                                   --
formatter/large/dataset.py                 1.00      5.5±0.02ms     7.4 MB/sec    1.08      5.9±0.03ms     6.9 MB/sec
formatter/numpy/ctypeslib.py               1.00   1087.1±3.82µs    15.3 MB/sec    1.14   1235.6±1.60µs    13.5 MB/sec
formatter/numpy/globals.py                 1.00    120.6±0.15µs    24.5 MB/sec    1.17    141.1±0.14µs    20.9 MB/sec
formatter/pydantic/types.py                1.00      2.4±0.01ms    10.6 MB/sec    1.09      2.6±0.02ms     9.7 MB/sec
linter/all-rules/large/dataset.py          1.00     14.2±0.09ms     2.9 MB/sec    1.00     14.1±0.07ms     2.9 MB/sec
linter/all-rules/numpy/ctypeslib.py        1.00      3.4±0.01ms     5.0 MB/sec    1.01      3.4±0.01ms     4.9 MB/sec
linter/all-rules/numpy/globals.py          1.00    410.9±0.54µs     7.2 MB/sec    1.02    417.9±0.41µs     7.1 MB/sec
linter/all-rules/pydantic/types.py         1.00      5.8±0.01ms     4.4 MB/sec    1.00      5.9±0.01ms     4.4 MB/sec
linter/default-rules/large/dataset.py      1.00      6.7±0.02ms     6.0 MB/sec    1.01      6.8±0.02ms     6.0 MB/sec
linter/default-rules/numpy/ctypeslib.py    1.00   1452.0±3.96µs    11.5 MB/sec    1.02   1482.3±3.56µs    11.2 MB/sec
linter/default-rules/numpy/globals.py      1.00    159.4±0.21µs    18.5 MB/sec    1.03    164.7±0.32µs    17.9 MB/sec
linter/default-rules/pydantic/types.py     1.00      3.0±0.01ms     8.4 MB/sec    1.01      3.1±0.01ms     8.3 MB/sec

Windows

group                                      main                                   pr
-----                                      ----                                   --
formatter/large/dataset.py                 1.17      9.9±0.63ms     4.1 MB/sec    1.00      8.4±0.22ms     4.8 MB/sec
formatter/numpy/ctypeslib.py               1.06  1823.8±93.03µs     9.1 MB/sec    1.00  1718.2±50.38µs     9.7 MB/sec
formatter/numpy/globals.py                 1.01   204.0±17.18µs    14.5 MB/sec    1.00   201.8±10.87µs    14.6 MB/sec
formatter/pydantic/types.py                1.14      4.2±0.33ms     6.0 MB/sec    1.00      3.7±0.14ms     6.9 MB/sec
linter/all-rules/large/dataset.py          1.00     21.5±0.69ms  1938.1 KB/sec    1.01     21.7±0.64ms  1924.1 KB/sec
linter/all-rules/numpy/ctypeslib.py        1.00      5.3±0.15ms     3.2 MB/sec    1.03      5.4±0.19ms     3.1 MB/sec
linter/all-rules/numpy/globals.py          1.00   608.9±22.10µs     4.8 MB/sec    1.02   622.2±18.80µs     4.7 MB/sec
linter/all-rules/pydantic/types.py         1.00      8.6±0.22ms     3.0 MB/sec    1.04      9.0±0.28ms     2.8 MB/sec
linter/default-rules/large/dataset.py      1.02     10.3±0.34ms     4.0 MB/sec    1.00     10.0±0.25ms     4.1 MB/sec
linter/default-rules/numpy/ctypeslib.py    1.09      2.3±0.10ms     7.3 MB/sec    1.00      2.1±0.06ms     7.9 MB/sec
linter/default-rules/numpy/globals.py      1.16   286.9±23.36µs    10.3 MB/sec    1.00    248.1±7.93µs    11.9 MB/sec
linter/default-rules/pydantic/types.py     1.15      5.2±0.48ms     4.9 MB/sec    1.00      4.6±0.12ms     5.6 MB/sec

@konstin
Copy link
Member Author

konstin commented Jun 7, 2023

Any way we can benchmark the effect on runtime?

The CI perf checks should pop up soon. I don't have experience with the phf crate, but a phf is expected to be faster because there are no collision.

@konstin
Copy link
Member Author

konstin commented Jun 7, 2023

This file is autogenerated, so I think we need to update the generation script instead.

If we see that this is the right structure, i'll update update_ambiguous_characters.py to emit phf generation, if not i'll update it to not emit duplicates anymore

Copy link
Member

@MichaReiser MichaReiser left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice. Putting back in your queue to update the generation script (if it improves perf).

You can also use cargo bloat --bin ruff --release to measure the estimated size

@konstin
Copy link
Member Author

konstin commented Jun 7, 2023

byte sizes of the assets (ls -la) before after improvement
target/release/ruff 15177064 14906664 -270.4 kB
target/wheels/ruff-0.0.271-py3-none-manylinux_2_34_x86_64.whl 5801783 5729345 -72.4 kB

I want to use phf for this reason alone

@konstin konstin requested a review from MichaReiser June 7, 2023 15:24
@konstin konstin merged commit 651d897 into main Jun 8, 2023
@konstin konstin deleted the phf-for-confusable branch June 8, 2023 06:13
konstin added a commit that referenced this pull request Jun 13, 2023
* Use phf for confusables to reduce llvm lines

## Summary

This replaces FxHashMap for the confusables with a perfect hash map from the [phf crate](https://github.com/rust-phf/rust-phf) to reduce the generated llvm instructions.

A perfect hash function is one that doesn't have any collisions. We can build one because we know all keys at compile time. This improves hashmap efficiency, even though this is likely not noticeable in our case (except someone has a large non-english crate to test on).

The original hashmap contained a lot of duplicates, which i had to remove when phf_map complained, i did so by sorting the keys.

The important part that it reduces the llvm instructions generated (#3808, `RUSTFLAGS="-Csymbol-mangling-version=v0" cargo llvm-lines -p ruff --lib | head -20`):

```
  Lines                  Copies               Function name
  -----                  ------               -------------
  1740502                38973                (TOTAL)
    27423 (1.6%,  1.6%)      1 (0.0%,  0.0%)  ruff[cef4c65d96248843]::rules::ruff::rules::confusables::CONFUSABLES::{closure#0}
    10193 (0.6%,  2.2%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::RuleCodePrefix>::iter
     8107 (0.5%,  2.6%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::Rule>::noqa_code
     7345 (0.4%,  3.0%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::checkers::ast::Checker as ruff_python_ast[3778b140caf21545]::visitor::Visitor>::visit_stmt
     6412 (0.4%,  3.4%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::spanned::SpannedDeserializer<toml_edit[7e3a6c5e67260672]::de::value::ValueDeserializer>>
     6412 (0.4%,  3.8%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::table::TableMapAccess>
     6409 (0.4%,  4.2%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::datetime::DatetimeDeserializer>
     5696 (0.3%,  4.5%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::checkers::ast::Checker as ruff_python_ast[3778b140caf21545]::visitor::Visitor>::visit_expr
     4448 (0.3%,  4.7%)      1 (0.0%,  0.0%)  ruff[cef4c65d96248843]::flake8_to_ruff::converter::convert
     3702 (0.2%,  4.9%)      1 (0.0%,  0.0%)  <&ruff[cef4c65d96248843]::registry::Linter as core[da82827a87f140f9]::iter::traits::collect::IntoIterator>::into_iter
     3349 (0.2%,  5.1%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::registry::Linter>::code_for_rule
     3132 (0.2%,  5.3%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::Rule as core[da82827a87f140f9]::fmt::Debug>::fmt
     3130 (0.2%,  5.5%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<&ruff[cef4c65d96248843]::codes::Rule>>::from
     3130 (0.2%,  5.7%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<ruff[cef4c65d96248843]::codes::Rule>>::from
     3130 (0.2%,  5.9%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::Rule as core[da82827a87f140f9]::convert::AsRef<str>>::as_ref
     3128 (0.2%,  6.0%)      1 (0.0%,  0.0%)  <ruff[cef4c65d96248843]::codes::RuleIter>::get
     2669 (0.2%,  6.2%)      1 (0.0%,  0.0%)  <<ruff[cef4c65d96248843]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_seq::<toml_edit[7e3a6c5e67260672]::de::array::ArraySeqAccess>
```
After:
```
  Lines                  Copies               Function name
  -----                  ------               -------------
  1710487                38900                (TOTAL)
    10193 (0.6%,  0.6%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::RuleCodePrefix>::iter
     8107 (0.5%,  1.1%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::Rule>::noqa_code
     7345 (0.4%,  1.5%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::checkers::ast::Checker as ruff_python_ast[5588cd60041c8605]::visitor::Visitor>::visit_stmt
     6412 (0.4%,  1.9%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::spanned::SpannedDeserializer<toml_edit[7e3a6c5e67260672]::de::value::ValueDeserializer>>
     6412 (0.4%,  2.2%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::table::TableMapAccess>
     6409 (0.4%,  2.6%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_map::<toml_edit[7e3a6c5e67260672]::de::datetime::DatetimeDeserializer>
     5696 (0.3%,  3.0%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::checkers::ast::Checker as ruff_python_ast[5588cd60041c8605]::visitor::Visitor>::visit_expr
     4448 (0.3%,  3.2%)      1 (0.0%,  0.0%)  ruff[52408f46d2058296]::flake8_to_ruff::converter::convert
     3702 (0.2%,  3.4%)      1 (0.0%,  0.0%)  <&ruff[52408f46d2058296]::registry::Linter as core[da82827a87f140f9]::iter::traits::collect::IntoIterator>::into_iter
     3349 (0.2%,  3.6%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::registry::Linter>::code_for_rule
     3132 (0.2%,  3.8%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::Rule as core[da82827a87f140f9]::fmt::Debug>::fmt
     3130 (0.2%,  4.0%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<&ruff[52408f46d2058296]::codes::Rule>>::from
     3130 (0.2%,  4.2%)      1 (0.0%,  0.0%)  <&str as core[da82827a87f140f9]::convert::From<ruff[52408f46d2058296]::codes::Rule>>::from
     3130 (0.2%,  4.4%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::Rule as core[da82827a87f140f9]::convert::AsRef<str>>::as_ref
     3128 (0.2%,  4.5%)      1 (0.0%,  0.0%)  <ruff[52408f46d2058296]::codes::RuleIter>::get
     2669 (0.2%,  4.7%)      1 (0.0%,  0.0%)  <<ruff[52408f46d2058296]::settings::options::Options as serde[d89b1b632568f5a3]::de::Deserialize>::deserialize::__Visitor as serde[d89b1b632568f5a3]::de::Visitor>::visit_seq::<toml_edit[7e3a6c5e67260672]::de::array::ArraySeqAccess>
     2659 (0.2%,  4.9%)      1 (0.0%,  0.0%)  <&ruff[52408f46d2058296]::codes::Pylint as core[da82827a87f140f9]::iter::traits::collect::IntoIterator>::into_iter
```

I'd assume this has a positive effect both on compile time and on runtime, but i don't know the actual effect on compile times and can't really measure.

## Test plan

Check CI for any performance regressions.

This should fix #3808 if we merge it.

* clippy

* Update update_ambiguous_characters.py
renovate bot added a commit to ixm-one/pytest-cmake-presets that referenced this pull request Jun 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [ruff](https://beta.ruff.rs/docs)
([source](https://github.com/astral-sh/ruff),
[changelog](https://github.com/astral-sh/ruff/releases)) | `^0.0.272`
-> `^0.0.273` |
[![age](https://badges.renovateapi.com/packages/pypi/ruff/0.0.273/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/ruff/0.0.273/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/ruff/0.0.273/compatibility-slim/0.0.272)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/ruff/0.0.273/confidence-slim/0.0.272)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>astral-sh/ruff</summary>

###
[`v0.0.273`](https://github.com/astral-sh/ruff/releases/tag/v0.0.273)

[Compare
Source](https://github.com/astral-sh/ruff/compare/v0.0.272...v0.0.273)

<!-- Release notes generated using configuration in .github/release.yml
at main -->

##### What's Changed

Highlights include:

- Autofix capabilities for rules like `flake8-import-conventions`, which
require symbol renames across a file.
- Significant decrease in Ruff's cache size (e.g., a ~50% decrease for
FastAPI).
-   Dozens and dozens of bug fixes + performance improvements.

##### Rules

- \[`copyright`] Implement copyright notice detection by
[@&#8203;Ryang20718](https://github.com/Ryang20718) in
[astral-sh/ruff#4701
- \[`flake8-datetimez`] Enable UTC-import for `datetime-utc-alias` fix
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5100
- \[`flake8-implicit-str-concat`] Add autofix for `ISC001` by
[@&#8203;tkukushkin](https://github.com/tkukushkin) in
[astral-sh/ruff#4853
- \[`flake8-import-conventions`] Enable autofix for unconventional
imports rule by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5152
- \[`flake8-pyi`] Add autofix for `Set`-to-`AbstractSet` rewrite using
reference tracking by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5074
- \[`flake8-pyi`] Implement PYI044 by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5021
- \[`flake8-return`] Extend revised `RET504` implementation to `with`
statements by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4998
- \[`flake8-return`] Implement autofix for revised `RET504` rule by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4999
- \[`flake8-return`] Refactor `RET504` to only enforce
assignment-then-return pattern by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4997
- \[`flake8-slots`] Add plugin, add `SLOT000`, `SLOT001` and `SLOT002`
by [@&#8203;qdegraaf](https://github.com/qdegraaf) in
[astral-sh/ruff#4909
- \[`perflint`] Add `perflint` plugin, add first rule `PERF102` by
[@&#8203;qdegraaf](https://github.com/qdegraaf) in
[astral-sh/ruff#4821
- \[`pylint`] Add Pylint rule `comparison-with-itself` (`R0124`) by
[@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#4957
- \[`pyupgrade`] Add a rule to remove unnecessary parentheses in class
definitions by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5032
- \[`ruff`] Add a rule for static keys in dict comprehensions by
[@&#8203;rodjunger](https://github.com/rodjunger) in
[astral-sh/ruff#4929
- \[`ruff`] Add rule to disallow implicit optional with autofix by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4831
- \[`ruff`] Expand RUF008 to all classes, but to a new code (RUF012) by
[@&#8203;adampauls](https://github.com/adampauls) in
[astral-sh/ruff#4390
- \[`ruff`] Remove unannotated attributes from RUF008 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5049
- \[`ruff`] Upgrade explicit-type-conversion rule (`RUF010`) to remove
unnecessary `str` calls by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4971

##### Settings

- Option (`-o`/`--output-file`) to write output to a file by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4950
- Add JSON Lines (NDJSON) message serialization by
[@&#8203;akx](https://github.com/akx) in
[astral-sh/ruff#5048
- Add rule documentation URL to JSON output by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5187

##### Caching

- Only use a single cache file per Python package by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5117
- Open cache files in parallel by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5120

##### Jupyter

- Add support for auto-fix in Jupyter notebooks by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4665
- Add roundtrip support for Jupyter notebook by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5028

##### Bug Fixes

- Handle decorators in class-parenthesis-modifying rules by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5034
- Allow re-assignments to `__all__` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4967
- Handled dict and set inside f-string
([#&#8203;4249](https://github.com/astral-sh/ruff/issues/4249)) by
[@&#8203;DavideCanton](https://github.com/DavideCanton) in
[astral-sh/ruff#4563
- Support concatenated string key removals by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4976
- Respect 'is not' operators split across newlines by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4977
- Parenthesize expressions prior to lexing in F632 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5001
- Ignore pyproject.toml for adding noqa directives by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5013
- Support 'reason' argument to `pytest.fail` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5040
- Allow `async with` in `redefined-loop-name` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5125
- Skip `DJ008` enforcement in stub files by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5139
- Detect continuations at start-of-file by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5173
- Fix allowed-ellipsis detection by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5174
- Remove continuations before trailing semicolons by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5199
- Support parenthesized expressions when splitting compound assertions
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5219
- Use phf for confusables to reduce llvm lines by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#4926
- Allow private accesses within special dunder methods by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4968
- Support concatenated literals in format-literals by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4974
- Fix line numbers in source frames by
[@&#8203;MichaReiser](https://github.com/MichaReiser) in
[astral-sh/ruff#4984
- Suggest combining async with statements by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5022
- Improve `TypedDict` conversion logic for shadowed builtins and dunder
methods by [@&#8203;charliermarsh](https://github.com/charliermarsh)
in
[astral-sh/ruff#5038
- Support glob patterns in pep8\_naming ignore-names by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5024
- Respect all `__all__` definitions for docstring visibility by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5052
- Don't treat annotations as resolved in forward references by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5060
- Consider ignore-names in all pep8 naming rules by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5079
- Ignore `reimplemented-builtin` if using `await` by
[@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#5101
- Allow space in filename for powershell + windows + python module by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#5115
- Don't treat straight imports of **future** as `__future__` imports by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5128
- Remove continuations when deleting statements by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5198
- Fix corner case involving terminal backslash after fixing `W293` by
[@&#8203;evanrittenhouse](https://github.com/evanrittenhouse) in
[astral-sh/ruff#5172
- Fix subprocess.run on Windows Python 3.7 by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#5220

##### New Contributors

- [@&#8203;rodjunger](https://github.com/rodjunger) made their first
contribution in
[astral-sh/ruff#4929
- [@&#8203;DavideCanton](https://github.com/DavideCanton) made their
first contribution in
[astral-sh/ruff#4563
- [@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) made their
first contribution in
[astral-sh/ruff#5021
- [@&#8203;adampauls](https://github.com/adampauls) made their first
contribution in
[astral-sh/ruff#4390
- [@&#8203;tkukushkin](https://github.com/tkukushkin) made their first
contribution in
[astral-sh/ruff#4853
- [@&#8203;Taybou](https://github.com/Taybou) made their first
contribution in
[astral-sh/ruff#5088
- [@&#8203;davidszotten](https://github.com/davidszotten) made their
first contribution in
[astral-sh/ruff#5158
- [@&#8203;dosisod](https://github.com/dosisod) made their first
contribution in
[astral-sh/ruff#5203

**Full Changelog**:
astral-sh/ruff@v0.0.272...v0.0.273

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/ixm-one/pytest-cmake-presets).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jankatins added a commit to jankatins/pr-workflow-example that referenced this pull request Jun 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [ruff](https://beta.ruff.rs/docs)
([source](https://github.com/astral-sh/ruff),
[changelog](https://github.com/astral-sh/ruff/releases)) | `0.0.272`
-> `0.0.274` |
[![age](https://badges.renovateapi.com/packages/pypi/ruff/0.0.274/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/ruff/0.0.274/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/ruff/0.0.274/compatibility-slim/0.0.272)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/ruff/0.0.274/confidence-slim/0.0.272)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>astral-sh/ruff</summary>

###
[`v0.0.274`](https://github.com/astral-sh/ruff/releases/tag/v0.0.274)

[Compare
Source](https://github.com/astral-sh/ruff/compare/v0.0.273...v0.0.274)

<!-- Release notes generated using configuration in .github/release.yml
at v0.0.274 -->

#### What's Changed

Follow-up release to `v0.0.273` to fix a panic in cache accesses.

##### Bug Fixes

- Use package roots rather than package members for cache initialization
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5233
- Avoid `.unwrap()` on cache access by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5229
- Revert change to `RUF010` to remove unnecessary `str` calls by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5232
- Avoid erroneous RUF013 violations for quoted annotations by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5234

**Full Changelog**:
astral-sh/ruff@v0.0.273...v0.0.274

###
[`v0.0.273`](https://github.com/astral-sh/ruff/releases/tag/v0.0.273)

[Compare
Source](https://github.com/astral-sh/ruff/compare/v0.0.272...v0.0.273)

<!-- Release notes generated using configuration in .github/release.yml
at main -->

#### What's Changed

Highlights include:

- Autofix capabilities for rules like `flake8-import-conventions`, which
require symbol renames across a file.
- Significant decrease in Ruff's cache size (e.g., a ~50% decrease for
FastAPI).
-   Dozens and dozens of bug fixes + performance improvements.

##### Rules

- \[`copyright`] Implement copyright notice detection by
[@&#8203;Ryang20718](https://github.com/Ryang20718) in
[astral-sh/ruff#4701
- \[`flake8-datetimez`] Enable UTC-import for `datetime-utc-alias` fix
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5100
- \[`flake8-implicit-str-concat`] Add autofix for `ISC001` by
[@&#8203;tkukushkin](https://github.com/tkukushkin) in
[astral-sh/ruff#4853
- \[`flake8-import-conventions`] Enable autofix for unconventional
imports rule by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5152
- \[`flake8-pyi`] Add autofix for `Set`-to-`AbstractSet` rewrite using
reference tracking by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5074
- \[`flake8-pyi`] Implement PYI044 by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5021
- \[`flake8-return`] Extend revised `RET504` implementation to `with`
statements by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4998
- \[`flake8-return`] Implement autofix for revised `RET504` rule by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4999
- \[`flake8-return`] Refactor `RET504` to only enforce
assignment-then-return pattern by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4997
- \[`flake8-slots`] Add plugin, add `SLOT000`, `SLOT001` and `SLOT002`
by [@&#8203;qdegraaf](https://github.com/qdegraaf) in
[astral-sh/ruff#4909
- \[`perflint`] Add `perflint` plugin, add first rule `PERF102` by
[@&#8203;qdegraaf](https://github.com/qdegraaf) in
[astral-sh/ruff#4821
- \[`pylint`] Add Pylint rule `comparison-with-itself` (`R0124`) by
[@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#4957
- \[`pyupgrade`] Add a rule to remove unnecessary parentheses in class
definitions by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5032
- \[`ruff`] Add a rule for static keys in dict comprehensions by
[@&#8203;rodjunger](https://github.com/rodjunger) in
[astral-sh/ruff#4929
- \[`ruff`] Add rule to disallow implicit optional with autofix by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4831
- \[`ruff`] Expand RUF008 to all classes, but to a new code (RUF012) by
[@&#8203;adampauls](https://github.com/adampauls) in
[astral-sh/ruff#4390
- \[`ruff`] Remove unannotated attributes from RUF008 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5049
- \[`ruff`] Upgrade explicit-type-conversion rule (`RUF010`) to remove
unnecessary `str` calls by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4971

##### Settings

- Option (`-o`/`--output-file`) to write output to a file by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4950
- Add JSON Lines (NDJSON) message serialization by
[@&#8203;akx](https://github.com/akx) in
[astral-sh/ruff#5048
- Add rule documentation URL to JSON output by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5187

##### Caching

- Only use a single cache file per Python package by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5117
- Open cache files in parallel by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5120

##### Jupyter

- Add support for auto-fix in Jupyter notebooks by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4665
- Add roundtrip support for Jupyter notebook by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5028

##### Bug Fixes

- Handle decorators in class-parenthesis-modifying rules by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5034
- Allow re-assignments to `__all__` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4967
- Handled dict and set inside f-string
([#&#8203;4249](https://github.com/astral-sh/ruff/issues/4249)) by
[@&#8203;DavideCanton](https://github.com/DavideCanton) in
[astral-sh/ruff#4563
- Support concatenated string key removals by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4976
- Respect 'is not' operators split across newlines by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4977
- Parenthesize expressions prior to lexing in F632 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5001
- Ignore pyproject.toml for adding noqa directives by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5013
- Support 'reason' argument to `pytest.fail` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5040
- Allow `async with` in `redefined-loop-name` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5125
- Skip `DJ008` enforcement in stub files by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5139
- Detect continuations at start-of-file by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5173
- Fix allowed-ellipsis detection by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5174
- Remove continuations before trailing semicolons by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5199
- Support parenthesized expressions when splitting compound assertions
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5219
- Use phf for confusables to reduce llvm lines by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#4926
- Allow private accesses within special dunder methods by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4968
- Support concatenated literals in format-literals by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4974
- Fix line numbers in source frames by
[@&#8203;MichaReiser](https://github.com/MichaReiser) in
[astral-sh/ruff#4984
- Suggest combining async with statements by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5022
- Improve `TypedDict` conversion logic for shadowed builtins and dunder
methods by [@&#8203;charliermarsh](https://github.com/charliermarsh)
in
[astral-sh/ruff#5038
- Support glob patterns in pep8\_naming ignore-names by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5024
- Respect all `__all__` definitions for docstring visibility by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5052
- Don't treat annotations as resolved in forward references by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5060
- Consider ignore-names in all pep8 naming rules by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5079
- Ignore `reimplemented-builtin` if using `await` by
[@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#5101
- Allow space in filename for powershell + windows + python module by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#5115
- Don't treat straight imports of **future** as `__future__` imports by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5128
- Remove continuations when deleting statements by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5198
- Fix corner case involving terminal backslash after fixing `W293` by
[@&#8203;evanrittenhouse](https://github.com/evanrittenhouse) in
[astral-sh/ruff#5172
- Fix subprocess.run on Windows Python 3.7 by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#5220

#### New Contributors

- [@&#8203;rodjunger](https://github.com/rodjunger) made their first
contribution in
[astral-sh/ruff#4929
- [@&#8203;DavideCanton](https://github.com/DavideCanton) made their
first contribution in
[astral-sh/ruff#4563
- [@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) made their
first contribution in
[astral-sh/ruff#5021
- [@&#8203;adampauls](https://github.com/adampauls) made their first
contribution in
[astral-sh/ruff#4390
- [@&#8203;tkukushkin](https://github.com/tkukushkin) made their first
contribution in
[astral-sh/ruff#4853
- [@&#8203;Taybou](https://github.com/Taybou) made their first
contribution in
[astral-sh/ruff#5088
- [@&#8203;davidszotten](https://github.com/davidszotten) made their
first contribution in
[astral-sh/ruff#5158
- [@&#8203;dosisod](https://github.com/dosisod) made their first
contribution in
[astral-sh/ruff#5203

**Full Changelog**:
astral-sh/ruff@v0.0.272...v0.0.273

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/jankatins/pr-workflow-example).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
renovate bot added a commit to allenporter/pyrainbird that referenced this pull request Jun 22, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [ruff](https://beta.ruff.rs/docs)
([source](https://github.com/astral-sh/ruff),
[changelog](https://github.com/astral-sh/ruff/releases)) | `==0.0.272`
-> `==0.0.274` |
[![age](https://badges.renovateapi.com/packages/pypi/ruff/0.0.274/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/ruff/0.0.274/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/ruff/0.0.274/compatibility-slim/0.0.272)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/ruff/0.0.274/confidence-slim/0.0.272)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>astral-sh/ruff</summary>

###
[`v0.0.274`](https://github.com/astral-sh/ruff/releases/tag/v0.0.274)

[Compare
Source](https://github.com/astral-sh/ruff/compare/v0.0.273...v0.0.274)

<!-- Release notes generated using configuration in .github/release.yml
at v0.0.274 -->

#### What's Changed

Follow-up release to `v0.0.273` to fix a panic in cache accesses.

##### Bug Fixes

- Use package roots rather than package members for cache initialization
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5233
- Avoid `.unwrap()` on cache access by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5229
- Revert change to `RUF010` to remove unnecessary `str` calls by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5232
- Avoid erroneous RUF013 violations for quoted annotations by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5234

**Full Changelog**:
astral-sh/ruff@v0.0.273...v0.0.274

###
[`v0.0.273`](https://github.com/astral-sh/ruff/releases/tag/v0.0.273)

[Compare
Source](https://github.com/astral-sh/ruff/compare/v0.0.272...v0.0.273)

<!-- Release notes generated using configuration in .github/release.yml
at main -->

#### What's Changed

Highlights include:

- Autofix capabilities for rules like `flake8-import-conventions`, which
require symbol renames across a file.
- Significant decrease in Ruff's cache size (e.g., a ~50% decrease for
FastAPI).
-   Dozens and dozens of bug fixes + performance improvements.

##### Rules

- \[`copyright`] Implement copyright notice detection by
[@&#8203;Ryang20718](https://github.com/Ryang20718) in
[astral-sh/ruff#4701
- \[`flake8-datetimez`] Enable UTC-import for `datetime-utc-alias` fix
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5100
- \[`flake8-implicit-str-concat`] Add autofix for `ISC001` by
[@&#8203;tkukushkin](https://github.com/tkukushkin) in
[astral-sh/ruff#4853
- \[`flake8-import-conventions`] Enable autofix for unconventional
imports rule by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5152
- \[`flake8-pyi`] Add autofix for `Set`-to-`AbstractSet` rewrite using
reference tracking by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5074
- \[`flake8-pyi`] Implement PYI044 by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5021
- \[`flake8-return`] Extend revised `RET504` implementation to `with`
statements by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4998
- \[`flake8-return`] Implement autofix for revised `RET504` rule by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4999
- \[`flake8-return`] Refactor `RET504` to only enforce
assignment-then-return pattern by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4997
- \[`flake8-slots`] Add plugin, add `SLOT000`, `SLOT001` and `SLOT002`
by [@&#8203;qdegraaf](https://github.com/qdegraaf) in
[astral-sh/ruff#4909
- \[`perflint`] Add `perflint` plugin, add first rule `PERF102` by
[@&#8203;qdegraaf](https://github.com/qdegraaf) in
[astral-sh/ruff#4821
- \[`pylint`] Add Pylint rule `comparison-with-itself` (`R0124`) by
[@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#4957
- \[`pyupgrade`] Add a rule to remove unnecessary parentheses in class
definitions by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5032
- \[`ruff`] Add a rule for static keys in dict comprehensions by
[@&#8203;rodjunger](https://github.com/rodjunger) in
[astral-sh/ruff#4929
- \[`ruff`] Add rule to disallow implicit optional with autofix by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4831
- \[`ruff`] Expand RUF008 to all classes, but to a new code (RUF012) by
[@&#8203;adampauls](https://github.com/adampauls) in
[astral-sh/ruff#4390
- \[`ruff`] Remove unannotated attributes from RUF008 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5049
- \[`ruff`] Upgrade explicit-type-conversion rule (`RUF010`) to remove
unnecessary `str` calls by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4971

##### Settings

- Option (`-o`/`--output-file`) to write output to a file by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4950
- Add JSON Lines (NDJSON) message serialization by
[@&#8203;akx](https://github.com/akx) in
[astral-sh/ruff#5048
- Add rule documentation URL to JSON output by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5187

##### Caching

- Only use a single cache file per Python package by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5117
- Open cache files in parallel by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5120

##### Jupyter

- Add support for auto-fix in Jupyter notebooks by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4665
- Add roundtrip support for Jupyter notebook by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5028

##### Bug Fixes

- Handle decorators in class-parenthesis-modifying rules by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5034
- Allow re-assignments to `__all__` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4967
- Handled dict and set inside f-string
([#&#8203;4249](https://github.com/astral-sh/ruff/issues/4249)) by
[@&#8203;DavideCanton](https://github.com/DavideCanton) in
[astral-sh/ruff#4563
- Support concatenated string key removals by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4976
- Respect 'is not' operators split across newlines by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4977
- Parenthesize expressions prior to lexing in F632 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5001
- Ignore pyproject.toml for adding noqa directives by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5013
- Support 'reason' argument to `pytest.fail` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5040
- Allow `async with` in `redefined-loop-name` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5125
- Skip `DJ008` enforcement in stub files by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5139
- Detect continuations at start-of-file by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5173
- Fix allowed-ellipsis detection by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5174
- Remove continuations before trailing semicolons by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5199
- Support parenthesized expressions when splitting compound assertions
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5219
- Use phf for confusables to reduce llvm lines by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#4926
- Allow private accesses within special dunder methods by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4968
- Support concatenated literals in format-literals by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4974
- Fix line numbers in source frames by
[@&#8203;MichaReiser](https://github.com/MichaReiser) in
[astral-sh/ruff#4984
- Suggest combining async with statements by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5022
- Improve `TypedDict` conversion logic for shadowed builtins and dunder
methods by [@&#8203;charliermarsh](https://github.com/charliermarsh)
in
[astral-sh/ruff#5038
- Support glob patterns in pep8\_naming ignore-names by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5024
- Respect all `__all__` definitions for docstring visibility by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5052
- Don't treat annotations as resolved in forward references by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5060
- Consider ignore-names in all pep8 naming rules by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5079
- Ignore `reimplemented-builtin` if using `await` by
[@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#5101
- Allow space in filename for powershell + windows + python module by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#5115
- Don't treat straight imports of **future** as `__future__` imports by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5128
- Remove continuations when deleting statements by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5198
- Fix corner case involving terminal backslash after fixing `W293` by
[@&#8203;evanrittenhouse](https://github.com/evanrittenhouse) in
[astral-sh/ruff#5172
- Fix subprocess.run on Windows Python 3.7 by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#5220

#### New Contributors

- [@&#8203;rodjunger](https://github.com/rodjunger) made their first
contribution in
[astral-sh/ruff#4929
- [@&#8203;DavideCanton](https://github.com/DavideCanton) made their
first contribution in
[astral-sh/ruff#4563
- [@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) made their
first contribution in
[astral-sh/ruff#5021
- [@&#8203;adampauls](https://github.com/adampauls) made their first
contribution in
[astral-sh/ruff#4390
- [@&#8203;tkukushkin](https://github.com/tkukushkin) made their first
contribution in
[astral-sh/ruff#4853
- [@&#8203;Taybou](https://github.com/Taybou) made their first
contribution in
[astral-sh/ruff#5088
- [@&#8203;davidszotten](https://github.com/davidszotten) made their
first contribution in
[astral-sh/ruff#5158
- [@&#8203;dosisod](https://github.com/dosisod) made their first
contribution in
[astral-sh/ruff#5203

**Full Changelog**:
astral-sh/ruff@v0.0.272...v0.0.273

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/allenporter/pyrainbird).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to allenporter/flux-local that referenced this pull request Jun 23, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [ruff](https://beta.ruff.rs/docs)
([source](https://github.com/astral-sh/ruff),
[changelog](https://github.com/astral-sh/ruff/releases)) | `==0.0.272`
-> `==0.0.275` |
[![age](https://badges.renovateapi.com/packages/pypi/ruff/0.0.275/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/ruff/0.0.275/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/ruff/0.0.275/compatibility-slim/0.0.272)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/ruff/0.0.275/confidence-slim/0.0.272)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>astral-sh/ruff</summary>

###
[`v0.0.275`](https://github.com/astral-sh/ruff/releases/tag/v0.0.275)

[Compare
Source](https://github.com/astral-sh/ruff/compare/v0.0.274...v0.0.275)

<!-- Release notes generated using configuration in .github/release.yml
at v0.0.275 -->

#### What's Changed

Highlights include a 7-10x decrease in Ruff's cache size.

##### Rules

- Add support for top-level quoted annotations in RUF013 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5235
- Add support for nested quoted annotations in RUF013 by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5254
- Move `compare-to-empty-string` (`PLC1901`) to nursery by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5264
- Ignore Pydantic classes when evaluating `mutable-class-default`
(`RUF012`) by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5273
- Allow `typing.Final` for `mutable-class-default annotations`
(`RUF012`) by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5274
- Modify `deprecated-import` (`UP035`) to prefer `typing_extensions` in
some versions by [@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#5291

##### Bug Fixes

- Restore existing bindings when unbinding caught exceptions by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5256
- Avoid including nursery rules in linter-level selectors by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5268

#### New Contributors

- [@&#8203;jgberry](https://github.com/jgberry) made their first
contribution in
[astral-sh/ruff#5221

**Full Changelog**:
astral-sh/ruff@v0.0.274...v0.0.275

###
[`v0.0.274`](https://github.com/astral-sh/ruff/releases/tag/v0.0.274)

[Compare
Source](https://github.com/astral-sh/ruff/compare/v0.0.273...v0.0.274)

<!-- Release notes generated using configuration in .github/release.yml
at v0.0.274 -->

#### What's Changed

Follow-up release to `v0.0.273` to fix a panic in cache accesses.

##### Bug Fixes

- Use package roots rather than package members for cache initialization
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5233
- Avoid `.unwrap()` on cache access by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5229
- Revert change to `RUF010` to remove unnecessary `str` calls by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5232
- Avoid erroneous RUF013 violations for quoted annotations by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5234

**Full Changelog**:
astral-sh/ruff@v0.0.273...v0.0.274

###
[`v0.0.273`](https://github.com/astral-sh/ruff/releases/tag/v0.0.273)

[Compare
Source](https://github.com/astral-sh/ruff/compare/v0.0.272...v0.0.273)

<!-- Release notes generated using configuration in .github/release.yml
at main -->

#### What's Changed

Highlights include:

- Autofix capabilities for rules like `flake8-import-conventions`, which
require symbol renames across a file.
- Significant decrease in Ruff's cache size (e.g., a ~50% decrease for
FastAPI).
-   Dozens and dozens of bug fixes + performance improvements.

##### Rules

- \[`copyright`] Implement copyright notice detection by
[@&#8203;Ryang20718](https://github.com/Ryang20718) in
[astral-sh/ruff#4701
- \[`flake8-datetimez`] Enable UTC-import for `datetime-utc-alias` fix
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5100
- \[`flake8-implicit-str-concat`] Add autofix for `ISC001` by
[@&#8203;tkukushkin](https://github.com/tkukushkin) in
[astral-sh/ruff#4853
- \[`flake8-import-conventions`] Enable autofix for unconventional
imports rule by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5152
- \[`flake8-pyi`] Add autofix for `Set`-to-`AbstractSet` rewrite using
reference tracking by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5074
- \[`flake8-pyi`] Implement PYI044 by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5021
- \[`flake8-return`] Extend revised `RET504` implementation to `with`
statements by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4998
- \[`flake8-return`] Implement autofix for revised `RET504` rule by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4999
- \[`flake8-return`] Refactor `RET504` to only enforce
assignment-then-return pattern by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4997
- \[`flake8-slots`] Add plugin, add `SLOT000`, `SLOT001` and `SLOT002`
by [@&#8203;qdegraaf](https://github.com/qdegraaf) in
[astral-sh/ruff#4909
- \[`perflint`] Add `perflint` plugin, add first rule `PERF102` by
[@&#8203;qdegraaf](https://github.com/qdegraaf) in
[astral-sh/ruff#4821
- \[`pylint`] Add Pylint rule `comparison-with-itself` (`R0124`) by
[@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#4957
- \[`pyupgrade`] Add a rule to remove unnecessary parentheses in class
definitions by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5032
- \[`ruff`] Add a rule for static keys in dict comprehensions by
[@&#8203;rodjunger](https://github.com/rodjunger) in
[astral-sh/ruff#4929
- \[`ruff`] Add rule to disallow implicit optional with autofix by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4831
- \[`ruff`] Expand RUF008 to all classes, but to a new code (RUF012) by
[@&#8203;adampauls](https://github.com/adampauls) in
[astral-sh/ruff#4390
- \[`ruff`] Remove unannotated attributes from RUF008 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5049
- \[`ruff`] Upgrade explicit-type-conversion rule (`RUF010`) to remove
unnecessary `str` calls by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4971

##### Settings

- Option (`-o`/`--output-file`) to write output to a file by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4950
- Add JSON Lines (NDJSON) message serialization by
[@&#8203;akx](https://github.com/akx) in
[astral-sh/ruff#5048
- Add rule documentation URL to JSON output by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5187

##### Caching

- Only use a single cache file per Python package by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5117
- Open cache files in parallel by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5120

##### Jupyter

- Add support for auto-fix in Jupyter notebooks by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4665
- Add roundtrip support for Jupyter notebook by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5028

##### Bug Fixes

- Handle decorators in class-parenthesis-modifying rules by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5034
- Allow re-assignments to `__all__` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4967
- Handled dict and set inside f-string
([#&#8203;4249](https://github.com/astral-sh/ruff/issues/4249)) by
[@&#8203;DavideCanton](https://github.com/DavideCanton) in
[astral-sh/ruff#4563
- Support concatenated string key removals by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4976
- Respect 'is not' operators split across newlines by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4977
- Parenthesize expressions prior to lexing in F632 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5001
- Ignore pyproject.toml for adding noqa directives by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5013
- Support 'reason' argument to `pytest.fail` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5040
- Allow `async with` in `redefined-loop-name` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5125
- Skip `DJ008` enforcement in stub files by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5139
- Detect continuations at start-of-file by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5173
- Fix allowed-ellipsis detection by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5174
- Remove continuations before trailing semicolons by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5199
- Support parenthesized expressions when splitting compound assertions
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5219
- Use phf for confusables to reduce llvm lines by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#4926
- Allow private accesses within special dunder methods by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4968
- Support concatenated literals in format-literals by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4974
- Fix line numbers in source frames by
[@&#8203;MichaReiser](https://github.com/MichaReiser) in
[astral-sh/ruff#4984
- Suggest combining async with statements by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5022
- Improve `TypedDict` conversion logic for shadowed builtins and dunder
methods by [@&#8203;charliermarsh](https://github.com/charliermarsh)
in
[astral-sh/ruff#5038
- Support glob patterns in pep8\_naming ignore-names by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5024
- Respect all `__all__` definitions for docstring visibility by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5052
- Don't treat annotations as resolved in forward references by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5060
- Consider ignore-names in all pep8 naming rules by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5079
- Ignore `reimplemented-builtin` if using `await` by
[@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#5101
- Allow space in filename for powershell + windows + python module by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#5115
- Don't treat straight imports of **future** as `__future__` imports by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5128
- Remove continuations when deleting statements by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5198
- Fix corner case involving terminal backslash after fixing `W293` by
[@&#8203;evanrittenhouse](https://github.com/evanrittenhouse) in
[astral-sh/ruff#5172
- Fix subprocess.run on Windows Python 3.7 by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#5220

#### New Contributors

- [@&#8203;rodjunger](https://github.com/rodjunger) made their first
contribution in
[astral-sh/ruff#4929
- [@&#8203;DavideCanton](https://github.com/DavideCanton) made their
first contribution in
[astral-sh/ruff#4563
- [@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) made their
first contribution in
[astral-sh/ruff#5021
- [@&#8203;adampauls](https://github.com/adampauls) made their first
contribution in
[astral-sh/ruff#4390
- [@&#8203;tkukushkin](https://github.com/tkukushkin) made their first
contribution in
[astral-sh/ruff#4853
- [@&#8203;Taybou](https://github.com/Taybou) made their first
contribution in
[astral-sh/ruff#5088
- [@&#8203;davidszotten](https://github.com/davidszotten) made their
first contribution in
[astral-sh/ruff#5158
- [@&#8203;dosisod](https://github.com/dosisod) made their first
contribution in
[astral-sh/ruff#5203

**Full Changelog**:
astral-sh/ruff@v0.0.272...v0.0.273

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/allenporter/flux-local).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
AlexWaygood added a commit to AlexWaygood/typeshed-stats that referenced this pull request Jul 1, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [docs/MarkDown](https://github.com/Python-Markdown/markdown)
([changelog](https://github.com/Python-Markdown/markdown/blob/master/docs/change_log/index.md))
| `==3.3.7` -> `==3.4.3` |
[![age](https://badges.renovateapi.com/packages/pypi/docs%2fMarkDown/3.4.3/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/docs%2fMarkDown/3.4.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/docs%2fMarkDown/3.4.3/compatibility-slim/3.3.7)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/docs%2fMarkDown/3.4.3/confidence-slim/3.3.7)](https://docs.renovatebot.com/merge-confidence/)
|
| [docs/mkdocs-material](https://github.com/squidfunk/mkdocs-material)
| `==9.1.14` -> `==9.1.17` |
[![age](https://badges.renovateapi.com/packages/pypi/docs%2fmkdocs-material/9.1.17/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/docs%2fmkdocs-material/9.1.17/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/docs%2fmkdocs-material/9.1.17/compatibility-slim/9.1.14)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/docs%2fmkdocs-material/9.1.17/confidence-slim/9.1.14)](https://docs.renovatebot.com/merge-confidence/)
|
| [docs/mkdocstrings](https://github.com/mkdocstrings/mkdocstrings)
([changelog](https://mkdocstrings.github.io/changelog)) | `==0.21.2` ->
`==0.22.0` |
[![age](https://badges.renovateapi.com/packages/pypi/docs%2fmkdocstrings/0.22.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/docs%2fmkdocstrings/0.22.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/docs%2fmkdocstrings/0.22.0/compatibility-slim/0.21.2)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/docs%2fmkdocstrings/0.22.0/confidence-slim/0.21.2)](https://docs.renovatebot.com/merge-confidence/)
|
| [misc-lint/blacken-docs](https://github.com/asottile/blacken-docs)
([changelog](https://github.com/adamchainz/blacken-docs/blob/main/CHANGELOG.rst))
| `==1.13.0` -> `==1.14.0` |
[![age](https://badges.renovateapi.com/packages/pypi/misc-lint%2fblacken-docs/1.14.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/misc-lint%2fblacken-docs/1.14.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/misc-lint%2fblacken-docs/1.14.0/compatibility-slim/1.13.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/misc-lint%2fblacken-docs/1.14.0/confidence-slim/1.13.0)](https://docs.renovatebot.com/merge-confidence/)
|
| [misc-lint/pycln](https://hadialqattan.github.io/pycln)
([source](https://github.com/hadialqattan/pycln)) | `==2.1.3` ->
`==2.1.5` |
[![age](https://badges.renovateapi.com/packages/pypi/misc-lint%2fpycln/2.1.5/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/misc-lint%2fpycln/2.1.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/misc-lint%2fpycln/2.1.5/compatibility-slim/2.1.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/misc-lint%2fpycln/2.1.5/confidence-slim/2.1.3)](https://docs.renovatebot.com/merge-confidence/)
|
| [misc-lint/ruff](https://beta.ruff.rs/docs)
([source](https://github.com/astral-sh/ruff),
[changelog](https://github.com/astral-sh/ruff/releases)) | `==0.0.272`
-> `==0.0.275` |
[![age](https://badges.renovateapi.com/packages/pypi/misc-lint%2fruff/0.0.275/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/misc-lint%2fruff/0.0.275/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/misc-lint%2fruff/0.0.275/compatibility-slim/0.0.272)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/misc-lint%2fruff/0.0.275/confidence-slim/0.0.272)](https://docs.renovatebot.com/merge-confidence/)
|
| [pytest/pytest](https://docs.pytest.org/en/latest/)
([source](https://github.com/pytest-dev/pytest),
[changelog](https://docs.pytest.org/en/stable/changelog.html)) |
`==7.3.1` -> `==7.4.0` |
[![age](https://badges.renovateapi.com/packages/pypi/pytest%2fpytest/7.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/pytest%2fpytest/7.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/pytest%2fpytest/7.4.0/compatibility-slim/7.3.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/pytest%2fpytest/7.4.0/confidence-slim/7.3.1)](https://docs.renovatebot.com/merge-confidence/)
|
| [pytest/pytest-mock](https://github.com/pytest-dev/pytest-mock)
([changelog](https://pytest-mock.readthedocs.io/en/latest/changelog.html))
| `==3.10.0` -> `==3.11.1` |
[![age](https://badges.renovateapi.com/packages/pypi/pytest%2fpytest-mock/3.11.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/pytest%2fpytest-mock/3.11.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/pytest%2fpytest-mock/3.11.1/compatibility-slim/3.10.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/pytest%2fpytest-mock/3.11.1/confidence-slim/3.10.0)](https://docs.renovatebot.com/merge-confidence/)
|
| [typecheck/mypy](https://www.mypy-lang.org/)
([source](https://github.com/python/mypy),
[changelog](https://mypy-lang.blogspot.com/)) | `==1.3.0` -> `==1.4.0` |
[![age](https://badges.renovateapi.com/packages/pypi/typecheck%2fmypy/1.4.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/typecheck%2fmypy/1.4.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/typecheck%2fmypy/1.4.0/compatibility-slim/1.3.0)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/typecheck%2fmypy/1.4.0/confidence-slim/1.3.0)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>Python-Markdown/markdown (docs/MarkDown)</summary>

###
[`v3.4.3`](https://github.com/Python-Markdown/markdown/compare/3.4.2...3.4.3)

[Compare
Source](https://github.com/Python-Markdown/markdown/compare/3.4.2...3.4.3)

###
[`v3.4.2`](https://github.com/Python-Markdown/markdown/compare/3.4.1...3.4.2)

[Compare
Source](https://github.com/Python-Markdown/markdown/compare/3.4.1...3.4.2)

###
[`v3.4.1`](https://github.com/Python-Markdown/markdown/compare/3.4...3.4.1)

[Compare
Source](https://github.com/Python-Markdown/markdown/compare/3.4...3.4.1)

###
[`v3.4`](https://github.com/Python-Markdown/markdown/compare/3.3.7...3.4)

[Compare
Source](https://github.com/Python-Markdown/markdown/compare/3.3.7...3.4)

</details>

<details>
<summary>squidfunk/mkdocs-material (docs/mkdocs-material)</summary>

###
[`v9.1.17`](https://github.com/squidfunk/mkdocs-material/releases/tag/9.1.17):
mkdocs-material-9.1.17

[Compare
Source](https://github.com/squidfunk/mkdocs-material/compare/9.1.16...9.1.17)

- Fixed
[#&#8203;5633](https://github.com/squidfunk/mkdocs-material/issues/5633):
Code annotations with nested lists incorrectly mounted
- Fixed
[#&#8203;5628](https://github.com/squidfunk/mkdocs-material/issues/5628):
Regression in new social plugin configuration scheme

###
[`v9.1.16`](https://github.com/squidfunk/mkdocs-material/releases/tag/9.1.16):
mkdocs-material-9.1.16

[Compare
Source](https://github.com/squidfunk/mkdocs-material/compare/9.1.15...9.1.16)

-   Updated Indonesian translations
-   Ensure scroll bar follows color scheme of operating system

###
[`v9.1.15`](https://github.com/squidfunk/mkdocs-material/releases/tag/9.1.15):
mkdocs-material-9.1.15

[Compare
Source](https://github.com/squidfunk/mkdocs-material/compare/9.1.14...9.1.15)

- Fixed
[#&#8203;5566](https://github.com/squidfunk/mkdocs-material/issues/5566):
Indicate color scheme to operating system
- Fixed
[#&#8203;5565](https://github.com/squidfunk/mkdocs-material/issues/5565):
Update `Dockerfile` to latest version of base image
- Fixed
[#&#8203;5554](https://github.com/squidfunk/mkdocs-material/issues/5554):
Add additional version tags (`9`, `9.1`) to Docker image
- Fixed
[#&#8203;5536](https://github.com/squidfunk/mkdocs-material/issues/5536):
Strip tags of ARIA labels in table of contents

</details>

<details>
<summary>mkdocstrings/mkdocstrings (docs/mkdocstrings)</summary>

###
[`v0.22.0`](https://github.com/mkdocstrings/mkdocstrings/blob/HEAD/CHANGELOG.md#&#8203;0220-httpsgithubcommkdocstringsmkdocstringsreleasestag0220---2023-05-25)

[Compare
Source](https://github.com/mkdocstrings/mkdocstrings/compare/0.21.2...0.22.0)

<small>[Compare with
0.21.2](https://github.com/mkdocstrings/mkdocstrings/compare/0.21.2...0.22.0)</small>

##### Features

- Allow extensions to add templates
([cf0af05](https://github.com/mkdocstrings/mkdocstrings/commit/cf0af059eb89240eba0437de417c124389e2f20e)
by Timothée Mazzucotelli). [PR
#&#8203;569](https://github.com/mkdocstrings/mkdocstrings/pull/569)

##### Code Refactoring

- Report inventory loading errors
([2c05d78](https://github.com/mkdocstrings/mkdocstrings/commit/2c05d7854b87251e26c1a2e1810b85702ff110f3)
by Timothée Mazzucotelli). Co-authored-by: Oleh Prypin <oleh@pryp.in>

</details>

<details>
<summary>asottile/blacken-docs (misc-lint/blacken-docs)</summary>

###
[`v1.14.0`](https://github.com/asottile/blacken-docs/blob/HEAD/CHANGELOG.rst#&#8203;1140-2023-06-13)

[Compare
Source](https://github.com/asottile/blacken-docs/compare/1.13.0...1.14.0)

-   Support Python 3.12.

</details>

<details>
<summary>hadialqattan/pycln (misc-lint/pycln)</summary>

###
[`v2.1.5`](https://github.com/hadialqattan/pycln/releases/tag/v2.1.5)

[Compare
Source](https://github.com/hadialqattan/pycln/compare/v2.1.4...v2.1.5)

##### Changed

- [Widen `pathspec` version artificial lock by
@&#8203;hadialqattan](https://github.com/hadialqattan/pycln/pull/203)

###
[`v2.1.4`](https://github.com/hadialqattan/pycln/releases/tag/v2.1.4)

[Compare
Source](https://github.com/hadialqattan/pycln/compare/v2.1.3...v2.1.4)

##### Fixed

- [Detect third-party libs installed in editable mode by
@&#8203;hadialqattan](https://github.com/hadialqattan/pycln/pull/200)
- [Preserve the original line break format by @&#8203;maxbachmann &
@&#8203;hadialqattan](https://github.com/hadialqattan/pycln/pull/197)

##### Changed

- [Bump JRubics/poetry-publish from 1.16 to 1.17 by
@&#8203;dependabot\[bot\]](https://github.com/hadialqattan/pycln/pull/201)
- [Remove `pathspec` version artificial lock by
@&#8203;hadialqattan](https://github.com/hadialqattan/pycln/pull/199)
- [Bump codecov/codecov-action from 3.1.1 to 3.1.4 by
@&#8203;dependabot\[bot\]](https://github.com/hadialqattan/pycln/pull/198)
- [Bump typer from 0.7.0 to 0.9.0 by
@&#8203;dependabot\[bot\]](https://github.com/hadialqattan/pycln/pull/195)

</details>

<details>
<summary>astral-sh/ruff (misc-lint/ruff)</summary>

###
[`v0.0.275`](https://github.com/astral-sh/ruff/releases/tag/v0.0.275)

[Compare
Source](https://github.com/astral-sh/ruff/compare/v0.0.274...v0.0.275)

<!-- Release notes generated using configuration in .github/release.yml
at v0.0.275 -->

#### What's Changed

Highlights include a 7-10x decrease in Ruff's cache size.

##### Rules

- Add support for top-level quoted annotations in RUF013 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5235
- Add support for nested quoted annotations in RUF013 by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5254
- Move `compare-to-empty-string` (`PLC1901`) to nursery by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5264
- Ignore Pydantic classes when evaluating `mutable-class-default`
(`RUF012`) by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5273
- Allow `typing.Final` for `mutable-class-default annotations`
(`RUF012`) by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5274
- Modify `deprecated-import` (`UP035`) to prefer `typing_extensions` in
some versions by [@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#5291

##### Bug Fixes

- Restore existing bindings when unbinding caught exceptions by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5256
- Avoid including nursery rules in linter-level selectors by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5268

#### New Contributors

- [@&#8203;jgberry](https://github.com/jgberry) made their first
contribution in
[astral-sh/ruff#5221

**Full Changelog**:
astral-sh/ruff@v0.0.274...v0.0.275

###
[`v0.0.274`](https://github.com/astral-sh/ruff/releases/tag/v0.0.274)

[Compare
Source](https://github.com/astral-sh/ruff/compare/v0.0.273...v0.0.274)

<!-- Release notes generated using configuration in .github/release.yml
at v0.0.274 -->

#### What's Changed

Follow-up release to `v0.0.273` to fix a panic in cache accesses.

##### Bug Fixes

- Use package roots rather than package members for cache initialization
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5233
- Avoid `.unwrap()` on cache access by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5229
- Revert change to `RUF010` to remove unnecessary `str` calls by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5232
- Avoid erroneous RUF013 violations for quoted annotations by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5234

**Full Changelog**:
astral-sh/ruff@v0.0.273...v0.0.274

###
[`v0.0.273`](https://github.com/astral-sh/ruff/releases/tag/v0.0.273)

[Compare
Source](https://github.com/astral-sh/ruff/compare/v0.0.272...v0.0.273)

<!-- Release notes generated using configuration in .github/release.yml
at main -->

#### What's Changed

Highlights include:

- Autofix capabilities for rules like `flake8-import-conventions`, which
require symbol renames across a file.
- Significant decrease in Ruff's cache size (e.g., a ~50% decrease for
FastAPI).
-   Dozens and dozens of bug fixes + performance improvements.

##### Rules

- \[`copyright`] Implement copyright notice detection by
[@&#8203;Ryang20718](https://github.com/Ryang20718) in
[astral-sh/ruff#4701
- \[`flake8-datetimez`] Enable UTC-import for `datetime-utc-alias` fix
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5100
- \[`flake8-implicit-str-concat`] Add autofix for `ISC001` by
[@&#8203;tkukushkin](https://github.com/tkukushkin) in
[astral-sh/ruff#4853
- \[`flake8-import-conventions`] Enable autofix for unconventional
imports rule by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5152
- \[`flake8-pyi`] Add autofix for `Set`-to-`AbstractSet` rewrite using
reference tracking by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5074
- \[`flake8-pyi`] Implement PYI044 by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5021
- \[`flake8-return`] Extend revised `RET504` implementation to `with`
statements by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4998
- \[`flake8-return`] Implement autofix for revised `RET504` rule by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4999
- \[`flake8-return`] Refactor `RET504` to only enforce
assignment-then-return pattern by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4997
- \[`flake8-slots`] Add plugin, add `SLOT000`, `SLOT001` and `SLOT002`
by [@&#8203;qdegraaf](https://github.com/qdegraaf) in
[astral-sh/ruff#4909
- \[`perflint`] Add `perflint` plugin, add first rule `PERF102` by
[@&#8203;qdegraaf](https://github.com/qdegraaf) in
[astral-sh/ruff#4821
- \[`pylint`] Add Pylint rule `comparison-with-itself` (`R0124`) by
[@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#4957
- \[`pyupgrade`] Add a rule to remove unnecessary parentheses in class
definitions by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5032
- \[`ruff`] Add a rule for static keys in dict comprehensions by
[@&#8203;rodjunger](https://github.com/rodjunger) in
[astral-sh/ruff#4929
- \[`ruff`] Add rule to disallow implicit optional with autofix by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4831
- \[`ruff`] Expand RUF008 to all classes, but to a new code (RUF012) by
[@&#8203;adampauls](https://github.com/adampauls) in
[astral-sh/ruff#4390
- \[`ruff`] Remove unannotated attributes from RUF008 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5049
- \[`ruff`] Upgrade explicit-type-conversion rule (`RUF010`) to remove
unnecessary `str` calls by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4971

##### Settings

- Option (`-o`/`--output-file`) to write output to a file by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4950
- Add JSON Lines (NDJSON) message serialization by
[@&#8203;akx](https://github.com/akx) in
[astral-sh/ruff#5048
- Add rule documentation URL to JSON output by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5187

##### Caching

- Only use a single cache file per Python package by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5117
- Open cache files in parallel by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5120

##### Jupyter

- Add support for auto-fix in Jupyter notebooks by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#4665
- Add roundtrip support for Jupyter notebook by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5028

##### Bug Fixes

- Handle decorators in class-parenthesis-modifying rules by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5034
- Allow re-assignments to `__all__` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4967
- Handled dict and set inside f-string
([#&#8203;4249](https://github.com/astral-sh/ruff/issues/4249)) by
[@&#8203;DavideCanton](https://github.com/DavideCanton) in
[astral-sh/ruff#4563
- Support concatenated string key removals by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4976
- Respect 'is not' operators split across newlines by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4977
- Parenthesize expressions prior to lexing in F632 by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5001
- Ignore pyproject.toml for adding noqa directives by
[@&#8203;dhruvmanila](https://github.com/dhruvmanila) in
[astral-sh/ruff#5013
- Support 'reason' argument to `pytest.fail` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5040
- Allow `async with` in `redefined-loop-name` by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5125
- Skip `DJ008` enforcement in stub files by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5139
- Detect continuations at start-of-file by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5173
- Fix allowed-ellipsis detection by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5174
- Remove continuations before trailing semicolons by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5199
- Support parenthesized expressions when splitting compound assertions
by [@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5219
- Use phf for confusables to reduce llvm lines by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#4926
- Allow private accesses within special dunder methods by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4968
- Support concatenated literals in format-literals by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#4974
- Fix line numbers in source frames by
[@&#8203;MichaReiser](https://github.com/MichaReiser) in
[astral-sh/ruff#4984
- Suggest combining async with statements by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5022
- Improve `TypedDict` conversion logic for shadowed builtins and dunder
methods by [@&#8203;charliermarsh](https://github.com/charliermarsh)
in
[astral-sh/ruff#5038
- Support glob patterns in pep8\_naming ignore-names by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5024
- Respect all `__all__` definitions for docstring visibility by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5052
- Don't treat annotations as resolved in forward references by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5060
- Consider ignore-names in all pep8 naming rules by
[@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) in
[astral-sh/ruff#5079
- Ignore `reimplemented-builtin` if using `await` by
[@&#8203;tjkuson](https://github.com/tjkuson) in
[astral-sh/ruff#5101
- Allow space in filename for powershell + windows + python module by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#5115
- Don't treat straight imports of **future** as `__future__` imports by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5128
- Remove continuations when deleting statements by
[@&#8203;charliermarsh](https://github.com/charliermarsh) in
[astral-sh/ruff#5198
- Fix corner case involving terminal backslash after fixing `W293` by
[@&#8203;evanrittenhouse](https://github.com/evanrittenhouse) in
[astral-sh/ruff#5172
- Fix subprocess.run on Windows Python 3.7 by
[@&#8203;konstin](https://github.com/konstin) in
[astral-sh/ruff#5220

#### New Contributors

- [@&#8203;rodjunger](https://github.com/rodjunger) made their first
contribution in
[astral-sh/ruff#4929
- [@&#8203;DavideCanton](https://github.com/DavideCanton) made their
first contribution in
[astral-sh/ruff#4563
- [@&#8203;Thomasdezeeuw](https://github.com/Thomasdezeeuw) made their
first contribution in
[astral-sh/ruff#5021
- [@&#8203;adampauls](https://github.com/adampauls) made their first
contribution in
[astral-sh/ruff#4390
- [@&#8203;tkukushkin](https://github.com/tkukushkin) made their first
contribution in
[astral-sh/ruff#4853
- [@&#8203;Taybou](https://github.com/Taybou) made their first
contribution in
[astral-sh/ruff#5088
- [@&#8203;davidszotten](https://github.com/davidszotten) made their
first contribution in
[astral-sh/ruff#5158
- [@&#8203;dosisod](https://github.com/dosisod) made their first
contribution in
[astral-sh/ruff#5203

**Full Changelog**:
astral-sh/ruff@v0.0.272...v0.0.273

</details>

<details>
<summary>pytest-dev/pytest (pytest/pytest)</summary>

###
[`v7.4.0`](https://github.com/pytest-dev/pytest/releases/tag/7.4.0)

[Compare
Source](https://github.com/pytest-dev/pytest/compare/7.3.2...7.4.0)

# pytest 7.4.0 (2023-06-23)

## Features

- [#&#8203;10901](https://github.com/pytest-dev/pytest/issues/10901):
Added `ExceptionInfo.from_exception()
<pytest.ExceptionInfo.from_exception>`{.interpreted-text role="func"}, a
simpler way to create an `~pytest.ExceptionInfo`{.interpreted-text
role="class"} from an exception.
This can replace `ExceptionInfo.from_exc_info()
<pytest.ExceptionInfo.from_exc_info()>`{.interpreted-text role="func"}
for most uses.

## Improvements

- [#&#8203;10872](https://github.com/pytest-dev/pytest/issues/10872):
Update test log report annotation to named tuple and fixed inconsistency
in docs for `pytest_report_teststatus`{.interpreted-text role="hook"}
hook.

- [#&#8203;10907](https://github.com/pytest-dev/pytest/issues/10907):
When an exception traceback to be displayed is completely filtered out
(by mechanisms such as `__tracebackhide__`, internal frames, and
similar), now only the exception string and the following message are
shown:

"All traceback entries are hidden. Pass \[--full-trace]{.title-ref} to
see hidden and internal frames.".

Previously, the last frame of the traceback was shown, even though it
was hidden.

- [#&#8203;10940](https://github.com/pytest-dev/pytest/issues/10940):
Improved verbose output (`-vv`) of `skip` and `xfail` reasons by
performing text wrapping while leaving a clear margin for progress
output.

    Added `TerminalReporter.wrap_write()` as a helper for that.

- [#&#8203;10991](https://github.com/pytest-dev/pytest/issues/10991):
Added handling of `%f` directive to print microseconds in log format
options, such as `log-date-format`.

- [#&#8203;11005](https://github.com/pytest-dev/pytest/issues/11005):
Added the underlying exception to the cache provider's path creation and
write warning messages.

- [#&#8203;11013](https://github.com/pytest-dev/pytest/issues/11013):
Added warning when `testpaths`{.interpreted-text role="confval"} is set,
but paths are not found by glob. In this case, pytest will fall back to
searching from the current directory.

- [#&#8203;11043](https://github.com/pytest-dev/pytest/issues/11043):
When \[--confcutdir]{.title-ref} is not specified, and there is no
config file present, the conftest cutoff directory
(\[--confcutdir]{.title-ref}) is now set to the `rootdir
<rootdir>`{.interpreted-text role="ref"}.
Previously in such cases, \[conftest.py]{.title-ref} files would be
probed all the way to the root directory of the filesystem.
If you are badly affected by this change, consider adding an empty
config file to your desired cutoff directory, or explicitly set
\[--confcutdir]{.title-ref}.

- [#&#8203;11081](https://github.com/pytest-dev/pytest/issues/11081):
The `norecursedirs`{.interpreted-text role="confval"} check is now
performed in a `pytest_ignore_collect`{.interpreted-text role="hook"}
implementation, so plugins can affect it.

If after updating to this version you see that your
\[norecursedirs]{.title-ref} setting is not being respected,
it means that a conftest or a plugin you use has a bad
\[pytest_ignore_collect]{.title-ref} implementation.
Most likely, your hook returns \[False]{.title-ref} for paths it does
not want to ignore,
which ends the processing and doesn't allow other plugins, including
pytest itself, to ignore the path.
The fix is to return \[None]{.title-ref} instead of \[False]{.title-ref}
for paths your hook doesn't want to ignore.

- [#&#8203;8711](https://github.com/pytest-dev/pytest/issues/8711):
`caplog.set_level()
<pytest.LogCaptureFixture.set_level>`{.interpreted-text role="func"} and
`caplog.at_level()
<pytest.LogCaptureFixture.at_level>`{.interpreted-text role="func"}
will temporarily enable the requested `level` if `level` was disabled
globally via
    `logging.disable(LEVEL)`.

## Bug Fixes

- [#&#8203;10831](https://github.com/pytest-dev/pytest/issues/10831):
Terminal Reporting: Fixed bug when running in `--tb=line` mode where
`pytest.fail(pytrace=False)` tests report `None`.
- [#&#8203;11068](https://github.com/pytest-dev/pytest/issues/11068):
Fixed the `--last-failed` whole-file skipping functionality ("skipped N
files") for `non-python test files <non-python tests>`{.interpreted-text
role="ref"}.
- [#&#8203;11104](https://github.com/pytest-dev/pytest/issues/11104):
Fixed a regression in pytest 7.3.2 which caused to
`testpaths`{.interpreted-text role="confval"} to be considered for
loading initial conftests,
even when it was not utilized (e.g. when explicit paths were given on
the command line).
    Now the `testpaths` are only considered when they are in use.
- [#&#8203;1904](https://github.com/pytest-dev/pytest/issues/1904):
Fixed traceback entries hidden with `__tracebackhide__ = True` still
being shown for chained exceptions (parts after "... the above exception
..." message).
- [#&#8203;7781](https://github.com/pytest-dev/pytest/issues/7781):
Fix writing non-encodable text to log file when using `--debug`.

## Improved Documentation

- [#&#8203;9146](https://github.com/pytest-dev/pytest/issues/9146):
Improved documentation for `caplog.set_level()
<pytest.LogCaptureFixture.set_level>`{.interpreted-text role="func"}.

## Trivial/Internal Changes

- [#&#8203;11031](https://github.com/pytest-dev/pytest/issues/11031):
Enhanced the CLI flag for `-c` to now include `--config-file` to make it
clear that this flag applies to the usage of a custom config file.

###
[`v7.3.2`](https://github.com/pytest-dev/pytest/releases/tag/7.3.2)

[Compare
Source](https://github.com/pytest-dev/pytest/compare/7.3.1...7.3.2)

# pytest 7.3.2 (2023-06-10)

## Bug Fixes

- [#&#8203;10169](https://github.com/pytest-dev/pytest/issues/10169):
Fix bug where very long option names could cause pytest to break with
`OSError: [Errno 36] File name too long` on some systems.
- [#&#8203;10894](https://github.com/pytest-dev/pytest/issues/10894):
Support for Python 3.12 (beta at the time of writing).
- [#&#8203;10987](https://github.com/pytest-dev/pytest/issues/10987):
`testpaths`{.interpreted-text role="confval"} is now honored to load
root `conftests`.
- [#&#8203;10999](https://github.com/pytest-dev/pytest/issues/10999):
The \[monkeypatch]{.title-ref}
\[setitem]{.title-ref}/\[delitem]{.title-ref} type annotations now allow
\[TypedDict]{.title-ref} arguments.
- [#&#8203;11028](https://github.com/pytest-dev/pytest/issues/11028):
Fixed bug in assertion rewriting where a variable assigned with the
walrus operator could not be used later in a function call.
- [#&#8203;11054](https://github.com/pytest-dev/pytest/issues/11054):
Fixed `--last-failed`'s "(skipped N files)" functionality for files
inside of packages (directories with \[\__init\_\_.py]{.title-ref}
files).

</details>

<details>
<summary>pytest-dev/pytest-mock (pytest/pytest-mock)</summary>

###
[`v3.11.1`](https://github.com/pytest-dev/pytest-mock/blob/HEAD/CHANGELOG.rst#&#8203;3111-2023-06-15)

[Compare
Source](https://github.com/pytest-dev/pytest-mock/compare/v3.11.0...v3.11.1)

(This release source code is identical to `3.11.0` except a small
internal fix to deployment/CI)

-   Fixed introspection for failed `assert_has_calls` (`#365`\_).

- Updated type annotations for `mocker.patch` and `mocker.spy`
(`#364`\_).

..
\_#&#820[pytest-dev/pytest-mock#365
..
\[pytest-dev/pytest-mock#364

###
[`v3.11.0`](https://github.com/pytest-dev/pytest-mock/blob/HEAD/CHANGELOG.rst#&#8203;3110-2023-06-15)

[Compare
Source](https://github.com/pytest-dev/pytest-mock/compare/v3.10.0...v3.11.0)

-   Fixed introspection for failed `assert_has_calls` (`#365`\_).

- Updated type annotations for `mocker.patch` and `mocker.spy`
(`#364`\_).

..
\_#&#820[pytest-dev/pytest-mock#365
..
\[pytest-dev/pytest-mock#364

</details>

<details>
<summary>python/mypy (typecheck/mypy)</summary>

### [`v1.4.0`](https://github.com/python/mypy/compare/v1.3.0...v1.4.0)

[Compare
Source](https://github.com/python/mypy/compare/v1.3.0...v1.4.0)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every 3 months on the first day of
the month" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/AlexWaygood/typeshed-stats).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNDQuMiIsInVwZGF0ZWRJblZlciI6IjM1LjE0NC4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Reduce ambiguous unicode character table
3 participants