diff options
Diffstat (limited to 'meta/lib/oeqa/files')
-rw-r--r-- | meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml | 2 | ||||
-rw-r--r-- | meta/lib/oeqa/files/test.go | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml b/meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml index de95025e86..a78ada2593 100644 --- a/meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml +++ b/meta/lib/oeqa/files/maturin/guessing-game/Cargo.toml | |||
@@ -14,7 +14,7 @@ crate-type = ["cdylib"] | |||
14 | rand = "0.8.4" | 14 | rand = "0.8.4" |
15 | 15 | ||
16 | [dependencies.pyo3] | 16 | [dependencies.pyo3] |
17 | version = "0.19.0" | 17 | version = "0.24.1" |
18 | # "abi3-py38" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.8 | 18 | # "abi3-py38" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.8 |
19 | features = ["abi3-py38"] | 19 | features = ["abi3-py38"] |
20 | 20 | ||
diff --git a/meta/lib/oeqa/files/test.go b/meta/lib/oeqa/files/test.go new file mode 100644 index 0000000000..9ca9302654 --- /dev/null +++ b/meta/lib/oeqa/files/test.go | |||
@@ -0,0 +1,7 @@ | |||
1 | package main | ||
2 | |||
3 | import "fmt" | ||
4 | |||
5 | func main() { | ||
6 | fmt.Println("Hello from Go!") | ||
7 | } | ||