Skip to content

Commit

Permalink
Bump version number to 0.6.7, change wheel build to use uv
Browse files Browse the repository at this point in the history
  • Loading branch information
peterspackman committed Jan 6, 2025
1 parent cd23c66 commit faee0bf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,17 @@ jobs:
- name: Checkout repos
uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v5

- name: Build wheels
uses: pypa/cibuildwheel@v2.20.0
uses: pypa/cibuildwheel@v2.22.0
env:
CIBW_BUILD: ${{matrix.pyver}}-*
CIBW_ARCHS_LINUX: auto64
CIBW_ARCHS_MACOS: auto64 universal2
CIBW_ARCHS_WINDOWS: auto64
CIBW_BUILD_FRONTEND: "build[uv]"
CIBW_TEST_SKIP: ${{matrix.pyver}}-*

- name: Upload artifacts
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR)

set(PROJECT_VERSION_MAJOR "0")
set(PROJECT_VERSION_MINOR "6")
set(PROJECT_VERSION_PATCH "6")
set(PROJECT_VERSION_PATCH "7")

project(occ
VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "occpy"
version = "0.6.6"
version = "0.6.7"
description = "A library for quantum chemistry"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/occpy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,6 @@ NB_MODULE(_occpy, m) {
#ifdef VERSION_INFO
m.attr("__version__") = MACRO_STRINGIFY(VERSION_INFO);
#else
m.attr("__version__") = "0.6.6";
m.attr("__version__") = "0.6.7";
#endif
}

0 comments on commit faee0bf

Please sign in to comment.