Skip to content

Commit

Permalink
Version 7.1.1
Browse files Browse the repository at this point in the history
Fixing Cython optimized build deployments for linux
  • Loading branch information
cdgriffith authored Aug 26, 2023
1 parent e61a7d2 commit cc26a46
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pythonpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

Version 7.1.1
-------------

* Fixing Cython optimized build deployments for linux

Version 7.1.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion box/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cc26a46

Please sign in to comment.