Ivan “CLOVIS” Canet

Results 62 issues of Ivan “CLOVIS” Canet

`llvmlite` 0.31 is compatible with LLVM versions 7.0 to 8.0. - Debian Stable (bullseye) is currently on LLVM 11.0 - Ubuntu 22.04 LTS is currently on LLVM 14.0 - ArchLinux...

#1422 introduced a thin wrapper around `test_all.py` used to provide compatibility with `unittest` and related test frameworks. This approach required the `parametrized` package, which was added to the optional dependencies....

In the 'out of SSA' section of https://miasm.re/blog/2019/01/16/miasm_ir_getting_higher.html#more, the aarch64 graph is missing.

Thank you for contributing to pyo3! Please consider adding the following to your pull request: - [x] an entry in CHANGELOG.md - ~~docs to all new functions and / or...

Hi! This issue is going to be a summary of my prototypes to generate Python Interface files ('stub files', '.pyi files') automatically. The prototypes are available as #2379 and #2447....

enhancement

The goal of this PR is to add a new `inspect` feature to PyO3. When this feature is enabled, the PyO3 macros extract information about the Python data structures. The...

Installed from the AUR. Error message: ```shell $ kscript 'println("Hello world")' /usr/bin/kscript: line 49: /usr/share/kotlin/bin/kotlin: No such file or directory ``` Correct path to the Kotlin binary: ```shell $ command...

help wanted

- [x] I have read the [guidelines for submitting issues](https://jmfayard.github.io/refreshVersions/contributing/submitting-issues/) ## ⚠️ Is your feature request related to a problem? Please describe After running `./gradlew refreshVersionsMigrate`, a typical Kotlin/JS project...

If you have this structure: ``` root/ module1/ module1.md build.gradle.kts build.gradle.kts ``` Problem: - add the configuration for `includes.from("module1.md")` in `module1/build.gradle.kts`, - run `./gradlew dokkaHtmlMultiModule` - the markdown file is...

Since Rust 1.60, it is possible to add an optional dependency without adding a feature of the same name ([documentation](https://doc.rust-lang.org/cargo/reference/features.html#optional-dependencies)). However, `cargo-all-features` expects these features to exist. Reproduction: ```toml #...