build: update pyo3 to v0.21

This commit is contained in:
Shunsuke Shibayama 2024-07-02 03:15:28 +09:00
parent d62bce689b
commit 2f6717ba4f
12 changed files with 61 additions and 41 deletions

View file

@ -168,6 +168,7 @@ impl Runnable for Compiler {
fn set_input(&mut self, input: erg_common::io::Input) {
self.cfg.input = input;
self.builder.set_input(self.cfg.input.clone());
self.builder.main_builder.set_input(self.cfg.input.clone());
self.code_generator.set_input(self.cfg.input.clone());
}