Skip to content

Commit

Permalink
temporarily remove 32-bit restriction
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBuchanan314 committed Dec 29, 2024
1 parent a10dd5f commit 42f05a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-multiarch.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/cbrrr/_cbrrr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 42f05a0

Please sign in to comment.