Arm builds (#343)

* Add arm64 wheels travis build job

* Update changelog
This commit is contained in:
Roman Mogylatov 2020-12-23 20:03:00 -05:00 committed by GitHub
parent 47278030ce
commit 89aeca76c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

View File

@ -78,6 +78,15 @@ jobs:
after_success: after_success:
- python3 -m pip install --upgrade --upgrade-strategy eager twine - python3 -m pip install --upgrade --upgrade-strategy eager twine
- python3 -m twine upload wheelhouse/*.whl - python3 -m twine upload wheelhouse/*.whl
- services: docker
arch: arm64
if: tag IS present
env: TWINE_USERNAME=__token__
install: python3 -m pip install cibuildwheel==1.6.3
script: python3 -m cibuildwheel --output-dir wheelhouse
after_success:
- python3 -m pip install --upgrade --upgrade-strategy eager twine
- python3 -m twine upload wheelhouse/*.whl
- os: osx - os: osx
if: tag IS present if: tag IS present
language: shell language: shell

View File

@ -7,6 +7,11 @@ that were made in every particular version.
From version 0.7.6 *Dependency Injector* framework strictly From version 0.7.6 *Dependency Injector* framework strictly
follows `Semantic versioning`_ follows `Semantic versioning`_
Development version
-------------------
- Add ARM wheel builds.
See issue `#342 <https://github.com/ets-labs/python-dependency-injector/issues/342>`_ for details.
4.5.4 4.5.4
----- -----
- Fix manylinux wheels uploading issue. - Fix manylinux wheels uploading issue.