Skip to content

Commit

Permalink
restoring other platforms and versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rgaudin committed Sep 3, 2024
1 parent 7b3cf4d commit 6ee06d5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-13] # windows-2019
os: [ubuntu-20.04, macos-13, windows-2022]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
python: ["3.12"]
os: [ubuntu-22.04, macos-13, windows-2022]
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand All @@ -48,7 +48,7 @@ jobs:
run: pip install -e .

- name: move DLLs next to wrapper
if: matrix.os == 'windows-latest'
if: matrix.os == 'windows-2022'
run: |
dir
Move-Item -Force -Path .\libzim\*.dll -Destination .\
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
os: [ubuntu-20.04, macos-13, windows-2022]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ testpaths = ["tests"]
pythonpath = ["."]

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

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

0 comments on commit 6ee06d5

Please sign in to comment.