Skip to content

Commit

Permalink
Fix syntax error in build_wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
peterspackman committed Feb 26, 2024
1 parent 05b9e8d commit 2fc17b8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
CIBW_ARCHS_LINUX: auto
CIBW_ARCHS_MACOS: auto universal2
CIBW_ARCHS_WINDOWS: auto
CIBW_TEST_SKIP: *
CIBW_TEST_SKIP: ${{matrix.pyver}}-*

- name: Upload artifacts
uses: actions/upload-artifact@v3
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 "5")
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.5.6"
version = "0.5.7"
description = "A library for quantum chemistry"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion src/occpy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,6 @@ NB_MODULE(_occpy, m) {
#ifdef VERSION_INFO
m.attr("__version__") = MACRO_STRINGIFY(VERSION_INFO);
#else
m.attr("__version__") = "0.5.6";
m.attr("__version__") = "0.5.7";
#endif
}

0 comments on commit 2fc17b8

Please sign in to comment.