From 2a1ecb6cabcfabcb8d142092bc8d80b81904c1fb Mon Sep 17 00:00:00 2001 From: Patrick Kunzmann Date: Wed, 18 Dec 2024 16:54:04 +0100 Subject: [PATCH 1/2] Remove deprecated MacOS x86 runner --- .github/workflows/test_and_deploy.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index b4ad6ee..e23a6ee 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -17,8 +17,7 @@ jobs: name: "Build & test wheel" strategy: matrix: - # Support both Mac x86_64 and arm64 - os: [ubuntu-latest, windows-latest, macos-12, macos-latest] + os: [ubuntu-latest, windows-latest, macos-latest] py-version: ["3.10", "3.11", "3.12"] runs-on: ${{ matrix.os }} defaults: From 5b93ba8787768911632db9c3b0836a8441c79a19 Mon Sep 17 00:00:00 2001 From: Patrick Kunzmann Date: Wed, 18 Dec 2024 16:55:27 +0100 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 9c2b741..45e1b72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fastpdb" -version = "1.3.1" +version = "1.3.2" edition = "2018" [dependencies] diff --git a/pyproject.toml b/pyproject.toml index 7f90794..81baf8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fastpdb" -version = "1.3.1" +version = "1.3.2" 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 eb9a25c..68bc1d9 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.1" +__version__ = "1.3.2" import os import warnings