Skip to content

Commit

Permalink
fix windows ci/cd (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
aviramha authored Jul 27, 2021
1 parent f81ebc0 commit 89625b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install -U pip wheel twine maturin
- run: pip install --user -U pip wheel twine maturin
- run: pip install -r requirements.txt
- run: maturin build --no-sdist --release --strip -i $pythonLocation"python.exe"
- run: pip install ormsgpack --no-index -f target/wheels
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- run: pip install -U pip wheel
- run: pip install --user -U pip wheel
- run: pip install -r requirements.txt
- run: maturin build --no-sdist --release --strip --manylinux off -i $pythonLocation/python
if: ${{ runner.os != 'Windows' }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
## 0.3.4 - 23/7/2021
### Fixed
- Fixed `ormsgpack.pyi` support of str as input for `unpackb`.
### Misc
- Fixed Windows CI/CD.
## 0.3.3 - 23/7/2021
### Misc
- Refactored adding objects to the module, creating a `__all__` object similar to the way PyO3 creates. This solves an issue with upgrading to new maturin version.
Expand Down

0 comments on commit 89625b5

Please sign in to comment.