Skip to content

Commit

Permalink
Add further identification and bump manylinux image
Browse files Browse the repository at this point in the history
  • Loading branch information
emild authored and emild committed Mar 9, 2024
1 parent 53d9387 commit eccf188
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:
CC: gcc-13
CXX: g++-13
CIBW_ARCHS: auto64
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
CIBW_SKIP: "*-musllinux_* pp*" #disable musllinux and pypy builds for now to speed up execution
# We "Test" the python executable by running all our example files, this would be done a little better in the future
CIBW_TEST_COMMAND: python -u {project}/PhotoshopExamples/tmp.py
Expand Down
1 change: 1 addition & 0 deletions PhotoshopAPI/src/Util/Struct/ImageChannel.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ struct ImageChannel : public BaseImageChannel
// C-blos2 returns the total number of chunks here
std::cout << "Preparing to append: " << remainingSize << " bytes to buffer" << std::endl;
std::vector<uint8_t> tmpVec(remainingSize, 0);
std::cout << "Generated temporary vector" << std::endl;
nchunks = blosc2_schunk_append_buffer(m_Data, tmpVec.data(), remainingSize);
remainingSize = 0;
}
Expand Down

0 comments on commit eccf188

Please sign in to comment.