We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 101ef43 + 873c4d1 commit ee2907cCopy full SHA for ee2907c
.github/workflows/tests.yml
@@ -26,7 +26,7 @@ jobs:
26
run: |
27
git clone -b master --single-branch https://github.com/hpyproject/hpy
28
cd hpy
29
- git checkout 7b45ce522
+ git checkout bba7ec5f0
30
pip install .
31
pip install numpy cython pytest transonic pythran
32
piconumpy/_piconumpy_hpy.c
@@ -243,10 +243,9 @@ static HPyDef *module_defines[] = {
243
};
244
245
static HPyModuleDef piconumpymodule = {
246
- HPyModuleDef_HEAD_INIT,
247
- .m_name = "_piconumpy_hpy",
248
- .m_doc = "piconumpy implemented with the HPy API.",
249
- .m_size = -1,
+ .name = "_piconumpy_hpy",
+ .doc = "piconumpy implemented with the HPy API.",
+ .size = -1,
250
.defines = module_defines,
251
252
0 commit comments