diff --git a/.github/workflows/test-multiarch.yml b/.github/workflows/test-multiarch.yml index d40c2f3..186ab4e 100644 --- a/.github/workflows/test-multiarch.yml +++ b/.github/workflows/test-multiarch.yml @@ -1,5 +1,5 @@ name: Test multi-arch -run-name: ${{ github.actor }} is running tests +run-name: ${{ github.actor }} is running multi-arch tests on: push: branches: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f877395..17efd9f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,5 @@ name: Test multi-python-version -run-name: ${{ github.actor }} is running tests +run-name: ${{ github.actor }} is running multi-python-version tests on: push: branches: diff --git a/src/cbrrr/_cbrrr.c b/src/cbrrr/_cbrrr.c index 0d19d50..96cd5dc 100644 --- a/src/cbrrr/_cbrrr.c +++ b/src/cbrrr/_cbrrr.c @@ -6,7 +6,7 @@ #define STATIC_ASSERT(COND,MSG) typedef char static_assertion_##MSG[(COND)?1:-1] -STATIC_ASSERT(sizeof(size_t) == 8, _64bit_platforms_only); // this'll hopefully be relaxed in the future +//STATIC_ASSERT(sizeof(size_t) == 8, _64bit_platforms_only); // this'll hopefully be relaxed in the future // XXX: not sure having these as globals is the right thing to do? static PyObject *PY_ZERO;