Skip to content

Commit

Permalink
Try Linux builds #10
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Aug 28, 2024
1 parent 95ea028 commit 2026095
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,18 @@ include = [
{ path = "pyxcp/recorder/*.so", format = "wheel" },
{ path = "pyxcp/recorder/*.pyd", format = "wheel" },
{ path = "pyxcp/*.exe", format = "wheel" },
{ path = "CMakeLists.txt", format = "wheel" },
{ path = "CMakeLists.txt", format = "wheel, sdist" },

{ path = "pyxcp/cpp_ext/*hpp", format = "sdist" },
{ path = "pyxcp/cpp_ext/*cpp", format = "sdist" },

{ path = "pyxcp/daq_stim/*hpp", format = "sdist" },
{ path = "pyxcp/daq_stim/*cpp", format = "sdist" },

{ path = "pyxcp/recorder/*hpp", format = "sdist" },
{ path = "pyxcp/recorder/*cpp", format = "sdist" },

{ path = "", format = "sdist" },
]

[tool.poetry.dependencies]
Expand Down Expand Up @@ -167,7 +178,10 @@ build-verbosity = 3
#test-command = "pytest -svv pyxcp/tests"
build = "cp3{8,9,10,11,12,13}-*"
manylinux-x86_64-image = "manylinux_2_28"
skip = ["*-manylinux_i686", "*-musllinux_x86_64", "*-musllinux_i686"] # Skip Linux 32bit and MUSL builds.
skip = ["*-manylinux_i686", "*-musllinux_x86_64", "*-musllinux_i686"]
skip = ["cp311-win_amd64"]
skip = ["cp38-manylinux*", "cp39-manylinux*"]
# Skip Linux 32bit and MUSL builds.
build-frontend = "build"

[tool.cibuildwheel.macos]
Expand Down

0 comments on commit 2026095

Please sign in to comment.