Skip to content

Commit

Permalink
Merge pull request #13 from padix-key/apple-arm
Browse files Browse the repository at this point in the history
Create OS X ARM builds
  • Loading branch information
padix-key authored May 6, 2024
2 parents 8e59344 + 5b641f4 commit bbaa785
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastpdb"
version = "1.3.0"
version = "1.3.1"
edition = "2018"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion python-src/fastpdb/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__name__ = "fastpdb"
__author__ = "Patrick Kunzmann"
__all__ = ["PDBFile"]
__version__ = "1.3.0"
__version__ = "1.3.1"

import os
import warnings
Expand Down

0 comments on commit bbaa785

Please sign in to comment.