Skip to content

Commit

Permalink
v0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
wojdyr committed Feb 19, 2024
1 parent 494e31a commit 5361af8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,24 @@ jobs:
arch: "x86_64"
- os: windows-2022
arch: "AMD64"
- os: macos-11
arch: "x86_64 arm64"
- os: macos-14
arch: "x86_64"
- os: macos-15
arch: "arm64"

steps:
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/[email protected].2
uses: pypa/[email protected].5
env:
CIBW_BUILD: ${{ github.event.inputs.cibw_build }}
CIBW_ARCHS: "${{ matrix.arch }}"

- run: ls -lh wheelhouse
shell: bash

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: program_wheels
name: program_wheel-${{ matrix.os }}
path: wheelhouse/*.whl
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ include(FetchContent)
FetchContent_Declare(
gemmi
GIT_REPOSITORY https://github.com/project-gemmi/gemmi.git
GIT_TAG v0.6.4
GIT_TAG v0.6.5
#GIT_TAG master
GIT_SHALLOW TRUE
)
Expand Down
6 changes: 4 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.7.0"]
requires = ["scikit-build-core~=0.8.0"]
build-backend = "scikit_build_core.build"

[project]
name = "gemmi-program"
version = "0.6.4"
version = "0.6.5"
requires-python = ">=3.8"
description="gemmi (program executable only)"
readme = "README.md"
Expand All @@ -25,6 +25,8 @@ cmake.build-type = "Release"
#logging.level = "DEBUG"
[tool.scikit-build.cmake.define]
BUILD_SHARED_LIBS = "OFF"
FETCH_ZLIB_NG = "ON"
INSTALL_DEV_FILES = "OFF"

[tool.cibuildwheel]
build-verbosity = 1
Expand Down

0 comments on commit 5361af8

Please sign in to comment.