Skip to content

Commit

Permalink
v0.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
wojdyr committed May 29, 2024
1 parent ca3da80 commit 5f4a64f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
arch: "x86_64"
- os: windows-2022
arch: "AMD64"
- os: macos-13
- os: macos-12
arch: "x86_64"
- os: macos-14
arch: "arm64"
Expand All @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.18.1
env:
CIBW_ARCHS: "${{ matrix.arch }}"

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ include(FetchContent)
FetchContent_Declare(
gemmi
GIT_REPOSITORY https://github.com/project-gemmi/gemmi.git
GIT_TAG v0.6.5
GIT_TAG v0.6.6
#GIT_TAG master
GIT_SHALLOW TRUE
)
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ because, unlike the module, it does not depend on Python version.

### notes for myself -- how to make wheels after gemmi release

* update `GIT_TAG` in CMakeLists.txt and `version` in pyproject.toml
* (optionally) update version of cibuildwheel in .github/workflows/wheels.yml
and scikit-build-core in pyproject.toml
* update:
* `GIT_TAG` in CMakeLists.txt
* `version` in pyproject.toml
* scikit-build-core version in pyproject.toml (optional)
* cibuildwheel version in .github/workflows/wheels.yml (optional)
* test locally with `pip wheel .`
* make source distribution of this repo: `python -m build --sdist`
* git push changes to build wheels in [GitHub Actions][1]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[build-system]
requires = ["scikit-build-core~=0.8.0"]
requires = ["scikit-build-core~=0.9.0"]
build-backend = "scikit_build_core.build"

[project]
name = "gemmi-program"
version = "0.6.5"
version = "0.6.6"
requires-python = ">=3.8"
description="gemmi (program executable only)"
readme = "README.md"
Expand Down

0 comments on commit 5f4a64f

Please sign in to comment.