Skip to content

Commit 6049928

Browse files
committed
lets see if we can build on M1
1 parent 7557f5e commit 6049928

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/package.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
os: [macos-12, ubuntu-latest]
15+
os: [macos-12, macos-13, macos-14, ubuntu-latest]
1616
python-version: ['3.11']
1717

1818
steps:
1919
- name: Setup python
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

@@ -28,7 +28,7 @@ jobs:
2828
submodules: true
2929

3030
- name: Install cibuildwheel
31-
run: python -m pip install cibuildwheel==2.16.2
31+
run: python -m pip install cibuildwheel==2.17.0
3232

3333
- name: Build wheels
3434
run: cibuildwheel --config-file pyproject.toml --output-dir wheelhouse

.github/workflows/validate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
os: [macos-11, macos-12, ubuntu-latest]
12+
os: [macos-11, macos-12, macos-13, macos-14, ubuntu-latest]
1313
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
1414

1515
steps:

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ build-backend = "setuptools.build_meta"
3434

3535
[project]
3636
name = "pointless"
37-
version = "1.0.17"
37+
version = "1.0.18"
3838
description = "A read-only relocatable data structure for JSON like data, with C and Python APIs"
3939
authors = [{ name = "Arni Mar Jonsson", email = "[email protected]" }]
40-
requires-python = ">=3.7"
40+
requires-python = ">=3.8"
4141
classifiers = [
4242
"Development Status :: 5 - Production/Stable",
4343
"Environment :: Other Environment",

0 commit comments

Comments
 (0)