Skip to content

Commit 48e78f1

Browse files
authored
Merge pull request #120 from pycompression/wheelreduce
Various build and CI fixes
2 parents 78dda64 + d6c85ad commit 48e78f1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
- lint
156156
- package-checks
157157
- test-static
158-
# - test-dynamic
158+
- test-dynamic
159159
- test-arch
160160
strategy:
161161
matrix:
@@ -215,9 +215,8 @@ jobs:
215215
{project}/tests/test_igzip_lib.py
216216
CIBW_ENVIRONMENT_LINUX: >-
217217
PYTHON_ISAL_BUILD_CACHE=True
218-
# This is in the docker container. So probably a '/tmp' will be available
219218
PYTHON_ISAL_BUILD_CACHE_FILE=/tmp/build_cache
220-
FLAGS="-g0 -DNDEBUG"
219+
CFLAGS="-g0 -DNDEBUG"
221220
CIBW_ENVIRONMENT_WINDOWS: >-
222221
PYTHON_ISAL_BUILD_CACHE=True
223222
PYTHON_ISAL_BUILD_CACHE_FILE=${{ runner.temp }}\build_cache

MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
graft src/isal/isa-l
1+
graft src/isal/isa-l
2+
include src/isal/*.h

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def build_isa_l(compiler_command: str, compiler_options: str):
175175
zip_safe=False,
176176
packages=find_packages('src'),
177177
package_dir={'': 'src'},
178-
package_data={'isal': ['*.pyi', 'py.typed', '*.c', '*.h',
178+
package_data={'isal': ['*.pyi', 'py.typed',
179179
# Include isa-l LICENSE and other relevant files
180180
# with the binary distribution.
181181
'isa-l/LICENSE', 'isa-l/README.md',

0 commit comments

Comments
 (0)