diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index a9d01fc..e24267a 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -72,7 +72,7 @@ jobs: - name: Build wheels run: | python -m pip install --upgrade pip - pip install cibuildwheel + pip install cibuildwheel setuptools wheel python -m cibuildwheel --output-dir dist env: CIBW_BUILD: cp38-manylinux_x86_64 cp39-manylinux_x86_64 cp310-manylinux_x86_64 cp311-manylinux_x86_64 cp311-macosx_x86_64 @@ -85,5 +85,6 @@ jobs: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | + pip install twine twine upload dist/*-manylinux*.whl twine upload dist/*-macosx*.whl diff --git a/CHANGES.rst b/CHANGES.rst index 20fc77f..0272697 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changelog ========= +Version 7.1.1 +------------- + +* Fixing Cython optimized build deployments for linux + Version 7.1.0 ------------- diff --git a/box/__init__.py b/box/__init__.py index 64d0ca8..10b4ce6 100644 --- a/box/__init__.py +++ b/box/__init__.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- __author__ = "Chris Griffith" -__version__ = "7.1.0" +__version__ = "7.1.1" from box.box import Box from box.box_list import BoxList