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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ocdiff
3
- Version: 0.0.5
3
+ Version: 0.0.7
4
4
  Classifier: Programming Language :: Python
5
5
  Requires-Dist: maturin ==1.4.0 ; extra == 'dev'
6
6
  Requires-Dist: pytest ==7.* ; extra == 'dev'
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ocdiff"
3
- version = "0.0.5"
3
+ version = "0.0.7"
4
4
  description = "difftastic Python wrapper"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
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