From 63156f9a89a885d738fc03137f6a725ac0cef4d3 Mon Sep 17 00:00:00 2001 From: Patrick Kunzmann Date: Mon, 6 May 2024 16:26:42 +0200 Subject: [PATCH 1/2] Support Apple Silicon aka 'arm64' --- .github/workflows/test_and_deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index be9cb08..5589e89 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -14,7 +14,8 @@ jobs: name: "Build & test wheel" strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + # Support both Mac x86_64 and arm64 + os: [ubuntu-latest, windows-latest, macos-12, macos-latest] py-version: ["3.10", "3.11", "3.12"] runs-on: ${{ matrix.os }} defaults: From 5b641f4d7344e14a36f035a355c5652cf877642e Mon Sep 17 00:00:00 2001 From: Patrick Kunzmann Date: Mon, 6 May 2024 16:26:52 +0200 Subject: [PATCH 2/2] Bump patch version --- Cargo.toml | 2 +- pyproject.toml | 2 +- python-src/fastpdb/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index dc76436..81402db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastpdb" -version = "1.3.0" +version = "1.3.1" edition = "2018" [dependencies] diff --git a/pyproject.toml b/pyproject.toml index 13bd233..085b5ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fastpdb" -version = "1.3.0" +version = "1.3.1" description = "A high performance drop-in replacement for Biotite's PDBFile." readme = "README.rst" requires-python = ">=3.7" diff --git a/python-src/fastpdb/__init__.py b/python-src/fastpdb/__init__.py index f47443b..e6438cf 100644 --- a/python-src/fastpdb/__init__.py +++ b/python-src/fastpdb/__init__.py @@ -1,7 +1,7 @@ __name__ = "fastpdb" __author__ = "Patrick Kunzmann" __all__ = ["PDBFile"] -__version__ = "1.3.0" +__version__ = "1.3.1" import os import warnings