Skip to content

Commit

Permalink
Add support for Linux i686
Browse files Browse the repository at this point in the history
  • Loading branch information
perklet committed Mar 6, 2024
1 parent c2c39a2 commit 297903d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
11 changes: 11 additions & 0 deletions libs.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,17 @@
"so_name": "libcurl-impersonate-chrome.so",
"so_arch": "x86_64"
},
{
"system": "Linux",
"machine": "i686",
"pointer_size": 32,
"libdir": "~/.local/lib",
"sysname": "linux",
"link_type": "static",
"libc": "gnu",
"so_name": "libcurl-impersonate-chrome.so",
"so_arch": "i386"
},
{
"system": "Linux",
"machine": "aarch64",
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,15 @@ build = [
"cp38-win32",
"cp38-manylinux_x86_64",
"cp38-manylinux_aarch64",
"cp38-manylinux_i686",
"cp38-musllinux_x86_64",
"cp38-musllinux_aarch64",
]
before-all = "make preprocess"
test-requires = "pytest"
test-command = "python -bb -m pytest {project}/tests/unittest"
test-extras = ["test"]
test-skip = "pp*"
test-skip = "cp38-manylinux_i686" # trustme not available
build-verbosity = 1


Expand Down

0 comments on commit 297903d

Please sign in to comment.