Skip to content

Commit

Permalink
release(1.2.3): recompiled for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Dec 19, 2023
1 parent df6472c commit aa75184
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-20.04, windows-2019, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-2019, macos-latest]
arch: [auto]
include:
- os: ubuntu-20.04
- os: ubuntu-latest
arch: aarch64

steps:
Expand All @@ -29,11 +29,12 @@ jobs:
uses: docker/setup-qemu-action@v1

- name: Build wheels
uses: joerick/cibuildwheel@v2.12.3
uses: joerick/cibuildwheel@v2.16.2
# to supply options, put them in 'env', like:
env:
CIBW_ARCHS_LINUX: ${{matrix.arch}}
CIBW_BEFORE_BUILD: pip install oldest-supported-numpy
CIBW_BEFORE_BUILD: pip install oldest-supported-numpy setuptools wheel cython
CIBW_ARCHS_MACOS: "x86_64 arm64"

- uses: actions/upload-artifact@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
CHANGES
=======

* fix: use enum instead of long

1.2.2
-----

* install: try immediately rendering NumpyImport as a string
* fix: use enum instead of long
* release(1.2.2): fixes busted py310 universal2 wheel

1.2.1
Expand Down
2 changes: 1 addition & 1 deletion fpzip.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cimport numpy as numpy

import numpy as np

__VERSION__ = '1.2.2'
__VERSION__ = '1.2.3'
__version__ = __VERSION__

FPZ_ERROR_STRINGS = [
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ requires = [
"setuptools",
"wheel",
"oldest-supported-numpy",
"cython",
]

0 comments on commit aa75184

Please sign in to comment.