Skip to content

Commit

Permalink
MAINT: trigger building of updated binaries; deprecate python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mckib2 committed Sep 22, 2024
1 parent 4f168ce commit 053b123
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.8, 3.9, '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/github-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,23 @@ on: workflow_dispatch
# - published

env:
CIBW_SKIP: cp27-* pp27-* pp37-* pp38-* pp39-* pp310-* cp35-* cp36-* cp37-* cp*-win32 cp*-manylinux_i686 cp*-musl* cp312-* # skip 3.12 for now until numpy releases
CIBW_SKIP: cp27-* pp27-* pp37-* pp38-* pp39-* pp310-* cp35-* cp36-* cp37-* cp38-* cp*-win32 cp*-manylinux_i686 cp*-musl*

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.8'
python-version: '3.12'

- name: Install cibuildwheel
run: |
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.8'
python-version: '3.12'

- name: Install dependencies
run: |
Expand All @@ -79,7 +79,7 @@ jobs:
id-token: write
if: github.event_name == 'workflow_dispatch'
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4.1.7
with:
name: artifact
path: dist
Expand Down
2 changes: 2 additions & 0 deletions INSTALLATION.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
WARNING: this may contain outdated information.

Windows 10 Installation
=======================

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'pygrappa',
'c', 'cpp',
version: '0.26.2',
version: '0.26.3',
license: '',
meson_version: '>= 0.64.0',
default_options: [
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ build-backend = "mesonpy"

[project]
name = "pygrappa"
version = "0.26.2"
version = "0.26.3"
description = "GeneRalized Autocalibrating Partially Parallel Acquisitions."
readme = "README.rst"
requires-python = ">=3.8"
requires-python = ">=3.9"
keywords = ["mri", "grappa", "sense"]
license = {text = "MIT"}
classifiers = [
Expand Down

0 comments on commit 053b123

Please sign in to comment.