ocdiff 0.0.5__tar.gz → 0.0.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ocdiff-0.0.5 → ocdiff-0.0.7}/.github/workflows/ci.yml +16 -2
- {ocdiff-0.0.5 → ocdiff-0.0.7}/PKG-INFO +1 -1
- {ocdiff-0.0.5 → ocdiff-0.0.7}/pyproject.toml +1 -1
- {ocdiff-0.0.5 → ocdiff-0.0.7}/.gitignore +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/Cargo.lock +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/Cargo.toml +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/LICENSE +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/README.md +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/python/ocdiff/__init__.py +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/python/ocdiff/__init__.pyi +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/python/ocdiff/helpers.py +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/src/lib.rs +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/tests/a.json +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/tests/b.json +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/tests/expected.html +0 -0
- {ocdiff-0.0.5 → ocdiff-0.0.7}/tests/test_ocdiff.py +0 -0
|
@@ -15,7 +15,9 @@ jobs:
|
|
|
15
15
|
fail-fast: false
|
|
16
16
|
matrix:
|
|
17
17
|
os:
|
|
18
|
+
- ubuntu
|
|
18
19
|
- macos
|
|
20
|
+
- windows
|
|
19
21
|
python-version:
|
|
20
22
|
- '3.11'
|
|
21
23
|
include:
|
|
@@ -45,8 +47,7 @@ jobs:
|
|
|
45
47
|
|
|
46
48
|
- name: install python dependencies
|
|
47
49
|
run: |
|
|
48
|
-
pip install twine
|
|
49
|
-
pip install -U build
|
|
50
|
+
pip install build twine
|
|
50
51
|
|
|
51
52
|
- name: build ${{ matrix.platform || matrix.os }} binaries
|
|
52
53
|
run: python -m build
|
|
@@ -64,6 +65,19 @@ jobs:
|
|
|
64
65
|
CIBW_TEST_COMMAND: "pytest {project}/tests"
|
|
65
66
|
CIBW_TEST_EXTRAS: test
|
|
66
67
|
|
|
68
|
+
- name: build windows 32bit binaries
|
|
69
|
+
if: matrix.os == 'windows'
|
|
70
|
+
run: python -m build
|
|
71
|
+
env:
|
|
72
|
+
CIBW_BUILD: '${{ matrix.cibw-version }}-win32'
|
|
73
|
+
CIBW_PLATFORM: windows
|
|
74
|
+
CIBW_ENVIRONMENT: 'PATH="$UserProfile\.cargo\bin;$PATH"'
|
|
75
|
+
CIBW_BEFORE_BUILD: >
|
|
76
|
+
rustup default stable-i686-pc-windows-msvc &&
|
|
77
|
+
rustup show
|
|
78
|
+
CIBW_TEST_COMMAND: "pytest {project}/tests"
|
|
79
|
+
CIBW_TEST_EXTRAS: test
|
|
80
|
+
|
|
67
81
|
# - name: Upload to github releases
|
|
68
82
|
# if: startsWith(github.ref, 'refs/tags/')
|
|
69
83
|
# uses: svenstaro/upload-release-action@v2
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|