Add python 3.11 to manylinux buildwheels (#1096)

* Add python 3.11 to manylinux buildwheels

* Fixing clippy.

* Node clippy.

* Python clippy.

* Changelog + version number update.

Co-authored-by: Nicolas Patry <patry.nicolas@protonmail.com>
This commit is contained in:
Cameron
2022-11-07 17:45:04 +10:00
committed by GitHub
parent 96a9e5715c
commit 11bb2e00f2
20 changed files with 39 additions and 28 deletions

View File

@ -360,7 +360,7 @@ impl PySequence {
}
fn __getnewargs__<'p>(&self, py: Python<'p>) -> &'p PyTuple {
PyTuple::new(py, &[PyList::empty(py)])
PyTuple::new(py, [PyList::empty(py)])
}
fn __len__(&self) -> usize {