Skip to content

Commit 6ee06d5

Browse files
committed
restoring other platforms and versions
1 parent 7b3cf4d commit 6ee06d5

4 files changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ${{ matrix.os }}
2323
strategy:
2424
matrix:
25-
os: [ubuntu-20.04, macos-13] # windows-2019
25+
os: [ubuntu-20.04, macos-13, windows-2022]
2626

2727
steps:
2828
- uses: actions/checkout@v3

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
runs-on: ${{ matrix.os }}
2828
strategy:
2929
matrix:
30-
os: [windows-latest]
31-
python: ["3.12"]
30+
os: [ubuntu-22.04, macos-13, windows-2022]
31+
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
3232

3333
steps:
3434
- uses: actions/checkout@v3
@@ -48,7 +48,7 @@ jobs:
4848
run: pip install -e .
4949

5050
- name: move DLLs next to wrapper
51-
if: matrix.os == 'windows-latest'
51+
if: matrix.os == 'windows-2022'
5252
run: |
5353
dir
5454
Move-Item -Force -Path .\libzim\*.dll -Destination .\

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ${{ matrix.os }}
2121
strategy:
2222
matrix:
23-
os: [windows-latest]
23+
os: [ubuntu-20.04, macos-13, windows-2022]
2424

2525
steps:
2626
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@ testpaths = ["tests"]
1111
pythonpath = ["."]
1212

1313
[tool.cibuildwheel]
14-
build = "cp312-win_amd64"
15-
# disabling windows until hhttps://github.com/kiwix/kiwix-build/issues/466
14+
build = "*"
1615
# disabling PyPy due to 2 failing tests
17-
# skip = "pp* *-win*"
16+
skip = "pp*"
1817

1918
test-requires = ["pytest"]
2019
test-command = "py.test {project}/tests/"

0 commit comments

Comments
 (0)