Skip to content

Commit 32948bd

Browse files
committed
WIP
1 parent 49b39d7 commit 32948bd

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.coveragerc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
[run]
2-
core = ctrace
32
plugins = Cython.Coverage
43
source = libzim

.github/workflows/Tests.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,7 @@ jobs:
3939

4040
- name: Upload coverage report to codecov
4141
if: matrix.os == 'ubuntu-24.04' && matrix.python == '3.14'
42-
<<<<<<< HEAD
4342
uses: codecov/codecov-action@v5
44-
=======
45-
uses: codecov/codecov-action@v4
46-
>>>>>>> 89f9199 (Add support for Python 3.14 and upgrade dependencies)
4743
with:
4844
fail_ci_if_error: true
4945
token: ${{ secrets.CODECOV_TOKEN }}

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ libzim = [
118118
[tool.cibuildwheel]
119119
build = "*"
120120
# disabling PyPy due to 2 failing tests
121-
skip = "pp* *win32*"
121+
# disabling free-threaded builds (cp313t, cp314t) as module is not compatible
122+
skip = "pp* *win32* cp313t-* cp314t-*"
122123

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

0 commit comments

Comments
 (0)